Skip to content

Commit

Permalink
Merge pull request #1848 from alicevision/dev/binRename
Browse files Browse the repository at this point in the history
[nodes] rename: remove "utils" from executables names
  • Loading branch information
fabiencastan authored Dec 21, 2022
2 parents 498a756 + 14f299e commit 9ac21d5
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion meshroom/nodes/aliceVision/ColorCheckerCorrection.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class ColorCheckerCorrection(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_colorCheckerCorrection {allParams}'
commandLine = 'aliceVision_colorCheckerCorrection {allParams}'
size = desc.DynamicNodeSize('input')
# parallelization = desc.Parallelization(blockSize=40)
# commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}'
Expand Down
2 changes: 1 addition & 1 deletion meshroom/nodes/aliceVision/ColorCheckerDetection.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class ColorCheckerDetection(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_colorCheckerDetection {allParams}'
commandLine = 'aliceVision_colorCheckerDetection {allParams}'
size = desc.DynamicNodeSize('input')
# parallelization = desc.Parallelization(blockSize=40)
# commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}'
Expand Down
2 changes: 1 addition & 1 deletion meshroom/nodes/aliceVision/ImageProcessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def outputImagesValueFunct(attr):


class ImageProcessing(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_imageProcessing {allParams}'
commandLine = 'aliceVision_imageProcessing {allParams}'
size = desc.DynamicNodeSize('input')
# parallelization = desc.Parallelization(blockSize=40)
# commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}'
Expand Down
2 changes: 1 addition & 1 deletion meshroom/nodes/aliceVision/KeyframeSelection.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


class KeyframeSelection(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_keyframeSelection {allParams}'
commandLine = 'aliceVision_keyframeSelection {allParams}'

category = 'Utils'
documentation = '''
Expand Down
2 changes: 1 addition & 1 deletion meshroom/nodes/aliceVision/LightingEstimation.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


class LightingEstimation(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_lightingEstimation {allParams}'
commandLine = 'aliceVision_lightingEstimation {allParams}'

category = 'Utils'

Expand Down
2 changes: 1 addition & 1 deletion meshroom/nodes/aliceVision/MergeMeshes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


class MergeMeshes(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_mergeMeshes {allParams}'
commandLine = 'aliceVision_mergeMeshes {allParams}'

category = 'Utils'
documentation = '''
Expand Down
2 changes: 1 addition & 1 deletion meshroom/nodes/aliceVision/SfMAlignment.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class SfMAlignment(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_sfmAlignment {allParams}'
commandLine = 'aliceVision_sfmAlignment {allParams}'
size = desc.DynamicNodeSize('input')

category = 'Utils'
Expand Down
2 changes: 1 addition & 1 deletion meshroom/nodes/aliceVision/SfMDistances.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


class SfMDistances(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_sfmDistances {allParams}'
commandLine = 'aliceVision_sfmDistances {allParams}'
size = desc.DynamicNodeSize('input')

inputs = [
Expand Down
2 changes: 1 addition & 1 deletion meshroom/nodes/aliceVision/SfMTransfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class SfMTransfer(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_sfmTransfer {allParams}'
commandLine = 'aliceVision_sfmTransfer {allParams}'
size = desc.DynamicNodeSize('input')

category = 'Utils'
Expand Down
2 changes: 1 addition & 1 deletion meshroom/nodes/aliceVision/SfMTransform.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class SfMTransform(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_sfmTransform {allParams}'
commandLine = 'aliceVision_sfmTransform {allParams}'
size = desc.DynamicNodeSize('input')

category = 'Utils'
Expand Down
2 changes: 1 addition & 1 deletion meshroom/nodes/aliceVision/Split360Images.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from meshroom.core import desc

class Split360Images(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_split360Images {allParams}'
commandLine = 'aliceVision_split360Images {allParams}'

category = 'Utils'
documentation = "This node is used to extract multiple images from equirectangular or dualfisheye images."
Expand Down

0 comments on commit 9ac21d5

Please sign in to comment.