Skip to content

Commit

Permalink
[nodes] DepthMap: increase size of blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiencastan committed Sep 21, 2023
1 parent 392f144 commit 86e7894
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions meshroom/nodes/aliceVision/DepthMap.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "4.0"
__version__ = "5.0"

from meshroom.core import desc

Expand All @@ -7,7 +7,7 @@ class DepthMap(desc.AVCommandLineNode):
commandLine = 'aliceVision_depthMapEstimation {allParams}'
gpu = desc.Level.INTENSIVE
size = desc.DynamicNodeSize('input')
parallelization = desc.Parallelization(blockSize=3)
parallelization = desc.Parallelization(blockSize=12)
commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}'

category = 'Dense Reconstruction'
Expand Down
6 changes: 3 additions & 3 deletions meshroom/nodes/aliceVision/DepthMapFilter.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 @@ -7,7 +7,7 @@ class DepthMapFilter(desc.AVCommandLineNode):
commandLine = 'aliceVision_depthMapFiltering {allParams}'
gpu = desc.Level.NORMAL
size = desc.DynamicNodeSize('input')
parallelization = desc.Parallelization(blockSize=10)
parallelization = desc.Parallelization(blockSize=24)
commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}'

category = 'Dense Reconstruction'
Expand All @@ -23,7 +23,7 @@ class DepthMapFilter(desc.AVCommandLineNode):
description="SfMData file.",
value="",
uid=[0],
),
),
desc.File(
name="depthMapsFolder",
label="Depth Maps Folder",
Expand Down

0 comments on commit 86e7894

Please sign in to comment.