mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-21 13:06:28 +02:00
[multiview] update hdri pipeline with PanoramaWarping/Compositing
This commit is contained in:
parent
d72dd03ce6
commit
7eff5fb29b
1 changed files with 6 additions and 2 deletions
|
@ -141,9 +141,12 @@ def hdriPipeline(graph):
|
||||||
featuresFolders=featureMatching.featuresFolders,
|
featuresFolders=featureMatching.featuresFolders,
|
||||||
matchesFolders=[featureMatching.output])
|
matchesFolders=[featureMatching.output])
|
||||||
|
|
||||||
panoramaStitching = graph.addNewNode('PanoramaStitching',
|
panoramaWarping = graph.addNewNode('PanoramaWarping',
|
||||||
input=panoramaEstimation.outSfMDataFilename)
|
input=panoramaEstimation.outSfMDataFilename)
|
||||||
|
|
||||||
|
panoramaCompositing = graph.addNewNode('PanoramaCompositing',
|
||||||
|
input=panoramaWarping.output)
|
||||||
|
|
||||||
return [
|
return [
|
||||||
cameraInit,
|
cameraInit,
|
||||||
featureExtraction,
|
featureExtraction,
|
||||||
|
@ -151,7 +154,8 @@ def hdriPipeline(graph):
|
||||||
featureMatching,
|
featureMatching,
|
||||||
panoramaExternalInfo,
|
panoramaExternalInfo,
|
||||||
panoramaEstimation,
|
panoramaEstimation,
|
||||||
panoramaStitching,
|
panoramaWarping,
|
||||||
|
panoramaCompositing,
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue