mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-23 19:47:39 +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,
|
depthMapFolder=depthMapFilter.depthMapFolder,
|
||||||
depthMapFilterFolder=depthMapFilter.output,
|
depthMapFilterFolder=depthMapFilter.output,
|
||||||
ini=depthMapFilter.ini)
|
ini=depthMapFilter.ini)
|
||||||
|
meshFiltering = graph.addNewNode('MeshFiltering',
|
||||||
|
input=meshing.output)
|
||||||
texturing = graph.addNewNode('Texturing',
|
texturing = graph.addNewNode('Texturing',
|
||||||
ini=meshing.ini,
|
ini=meshing.ini,
|
||||||
inputDenseReconstruction=meshing.outputDenseReconstruction)
|
inputDenseReconstruction=meshing.outputDenseReconstruction,
|
||||||
|
inputMesh=meshFiltering.output)
|
||||||
|
|
||||||
return [
|
return [
|
||||||
prepareDenseScene,
|
prepareDenseScene,
|
||||||
|
@ -137,6 +140,7 @@ def mvsPipeline(graph, sfm=None):
|
||||||
depthMap,
|
depthMap,
|
||||||
depthMapFilter,
|
depthMapFilter,
|
||||||
meshing,
|
meshing,
|
||||||
|
meshFiltering,
|
||||||
texturing
|
texturing
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue