Skip to content

Commit

Permalink
Merge pull request #951 from alicevision/dev/depthMapFolders
Browse files Browse the repository at this point in the history
Dev/depth map folders
  • Loading branch information
fabiencastan authored Jun 22, 2020
2 parents 9ccc726 + fe9cf42 commit 51e21aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
3 changes: 1 addition & 2 deletions meshroom/multiview.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,7 @@ def mvsPipeline(graph, sfm=None):
depthMapsFolder=depthMap.output)
meshing = graph.addNewNode('Meshing',
input=depthMapFilter.input,
depthMapsFolder=depthMapFilter.depthMapsFolder,
depthMapsFilterFolder=depthMapFilter.output)
depthMapsFolder=depthMapFilter.output)
meshFiltering = graph.addNewNode('MeshFiltering',
inputMesh=meshing.outputMesh)
texturing = graph.addNewNode('Texturing',
Expand Down
11 changes: 2 additions & 9 deletions meshroom/nodes/aliceVision/Meshing.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.0"
__version__ = "4.0"

from meshroom.core import desc

Expand All @@ -20,14 +20,7 @@ class Meshing(desc.CommandLineNode):
desc.File(
name="depthMapsFolder",
label='Depth Maps Folder',
description='Input depth maps folder',
value='',
uid=[0],
),
desc.File(
name="depthMapsFilterFolder",
label='Filtered Depth Maps Folder',
description='Input filtered depth maps folder',
description='Input depth maps folder.',
value='',
uid=[0],
),
Expand Down

0 comments on commit 51e21aa

Please sign in to comment.