Add space in category label

This commit is contained in:
Fabien Castan 2024-09-06 21:57:24 +02:00
parent 61c3102b89
commit 24a623acc8
4 changed files with 5 additions and 5 deletions

View file

@ -6,7 +6,7 @@ from meshroom.core.utils import VERBOSE_LEVEL
class LightingCalibration(desc.CommandLineNode): class LightingCalibration(desc.CommandLineNode):
commandLine = 'aliceVision_lightingCalibration {allParams}' commandLine = 'aliceVision_lightingCalibration {allParams}'
category = 'PhotometricStereo' category = 'Photometric Stereo'
documentation = ''' documentation = '''
Evaluate the lighting in a scene using spheres placed in the scene. Evaluate the lighting in a scene using spheres placed in the scene.
Can also be used to calibrate a lighting dome (RTI type). Can also be used to calibrate a lighting dome (RTI type).

View file

@ -5,7 +5,7 @@ from meshroom.core.utils import VERBOSE_LEVEL
class NormalIntegration(desc.CommandLineNode): class NormalIntegration(desc.CommandLineNode):
commandLine = 'aliceVision_normalIntegration {allParams}' commandLine = 'aliceVision_normalIntegration {allParams}'
category = 'PhotometricStereo' category = 'Photometric Stereo'
documentation = ''' documentation = '''
Evaluate a depth map from a normals map (currently in development) Evaluate a depth map from a normals map (currently in development)
''' '''

View file

@ -5,7 +5,7 @@ from meshroom.core.utils import VERBOSE_LEVEL
class PhotometricStereo(desc.CommandLineNode): class PhotometricStereo(desc.CommandLineNode):
commandLine = 'aliceVision_photometricStereo {allParams}' commandLine = 'aliceVision_photometricStereo {allParams}'
category = 'PhotometricStereo' category = 'Photometric Stereo'
documentation = ''' documentation = '''
Reconstruction using Photometric Stereo. A normal map is evaluated from several photographs taken from the same point of view, but under different lighting conditions. Reconstruction using Photometric Stereo. A normal map is evaluated from several photographs taken from the same point of view, but under different lighting conditions.
The lighting conditions are assumed to be known. The lighting conditions are assumed to be known.
@ -145,7 +145,7 @@ The lighting conditions are assumed to be known.
uid=[], uid=[],
group="", # do not export on the command line group="", # do not export on the command line
), ),
desc.File( desc.File(
name="albedo", name="albedo",
label="Albedo Maps", label="Albedo Maps",

View file

@ -6,7 +6,7 @@ from meshroom.core.utils import VERBOSE_LEVEL
class SphereDetection(desc.CommandLineNode): class SphereDetection(desc.CommandLineNode):
commandLine = 'aliceVision_sphereDetection {allParams}' commandLine = 'aliceVision_sphereDetection {allParams}'
category = 'PhotometricStereo' category = 'Photometric Stereo'
documentation = ''' documentation = '''
Detect spheres in pictures. These spheres will be used for lighting calibration. Detect spheres in pictures. These spheres will be used for lighting calibration.
Spheres can be automatically detected or manually defined in the interface. Spheres can be automatically detected or manually defined in the interface.