mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-01 02:12:04 +02:00
[multiview] add MeshFiltering by default
This commit is contained in:
parent
4d9c2c1058
commit
8689269efe
1 changed files with 5 additions and 1 deletions
|
@ -127,9 +127,12 @@ def mvsPipeline(graph, sfm=None):
|
|||
depthMapFolder=depthMapFilter.depthMapFolder,
|
||||
depthMapFilterFolder=depthMapFilter.output,
|
||||
ini=depthMapFilter.ini)
|
||||
meshFiltering = graph.addNewNode('MeshFiltering',
|
||||
input=meshing.output)
|
||||
texturing = graph.addNewNode('Texturing',
|
||||
ini=meshing.ini,
|
||||
inputDenseReconstruction=meshing.outputDenseReconstruction)
|
||||
inputDenseReconstruction=meshing.outputDenseReconstruction,
|
||||
inputMesh=meshFiltering.output)
|
||||
|
||||
return [
|
||||
prepareDenseScene,
|
||||
|
@ -137,6 +140,7 @@ def mvsPipeline(graph, sfm=None):
|
|||
depthMap,
|
||||
depthMapFilter,
|
||||
meshing,
|
||||
meshFiltering,
|
||||
texturing
|
||||
]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue