Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[nodes] rename: remove "utils" from executables names #1848

Merged
merged 1 commit into from
Dec 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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