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

This commit is contained in:
Fabien Castan 2022-12-13 17:21:34 +01:00
parent 60fa35d43b
commit 14f299e323
11 changed files with 11 additions and 11 deletions

View file

@ -6,7 +6,7 @@ import os.path
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}'

View file

@ -6,7 +6,7 @@ import os.path
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}'

View file

@ -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}'

View file

@ -5,7 +5,7 @@ from meshroom.core import desc
class KeyframeSelection(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_keyframeSelection {allParams}'
commandLine = 'aliceVision_keyframeSelection {allParams}'
category = 'Utils'
documentation = '''

View file

@ -4,7 +4,7 @@ from meshroom.core import desc
class LightingEstimation(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_lightingEstimation {allParams}'
commandLine = 'aliceVision_lightingEstimation {allParams}'
category = 'Utils'

View file

@ -4,7 +4,7 @@ from meshroom.core import desc
class MergeMeshes(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_mergeMeshes {allParams}'
commandLine = 'aliceVision_mergeMeshes {allParams}'
category = 'Utils'
documentation = '''

View file

@ -6,7 +6,7 @@ import os.path
class SfMAlignment(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_sfmAlignment {allParams}'
commandLine = 'aliceVision_sfmAlignment {allParams}'
size = desc.DynamicNodeSize('input')
category = 'Utils'

View file

@ -4,7 +4,7 @@ from meshroom.core import desc
class SfMDistances(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_sfmDistances {allParams}'
commandLine = 'aliceVision_sfmDistances {allParams}'
size = desc.DynamicNodeSize('input')
inputs = [

View file

@ -6,7 +6,7 @@ import os.path
class SfMTransfer(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_sfmTransfer {allParams}'
commandLine = 'aliceVision_sfmTransfer {allParams}'
size = desc.DynamicNodeSize('input')
category = 'Utils'

View file

@ -6,7 +6,7 @@ import os.path
class SfMTransform(desc.AVCommandLineNode):
commandLine = 'aliceVision_utils_sfmTransform {allParams}'
commandLine = 'aliceVision_sfmTransform {allParams}'
size = desc.DynamicNodeSize('input')
category = 'Utils'

View file

@ -3,7 +3,7 @@ __version__ = "1.0"
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."