From 24a623acc86ed2f7ffbd802dba061b0d84485b65 Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Fri, 6 Sep 2024 21:57:24 +0200 Subject: [PATCH] Add space in category label --- meshroom/nodes/aliceVision/LightingCalibration.py | 2 +- meshroom/nodes/aliceVision/NormalIntegration.py | 2 +- meshroom/nodes/aliceVision/PhotometricStereo.py | 4 ++-- meshroom/nodes/aliceVision/SphereDetection.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/meshroom/nodes/aliceVision/LightingCalibration.py b/meshroom/nodes/aliceVision/LightingCalibration.py index 9ba11b0f..97b795af 100644 --- a/meshroom/nodes/aliceVision/LightingCalibration.py +++ b/meshroom/nodes/aliceVision/LightingCalibration.py @@ -6,7 +6,7 @@ from meshroom.core.utils import VERBOSE_LEVEL class LightingCalibration(desc.CommandLineNode): commandLine = 'aliceVision_lightingCalibration {allParams}' - category = 'PhotometricStereo' + category = 'Photometric Stereo' documentation = ''' Evaluate the lighting in a scene using spheres placed in the scene. Can also be used to calibrate a lighting dome (RTI type). diff --git a/meshroom/nodes/aliceVision/NormalIntegration.py b/meshroom/nodes/aliceVision/NormalIntegration.py index 523e8629..0f4567b0 100644 --- a/meshroom/nodes/aliceVision/NormalIntegration.py +++ b/meshroom/nodes/aliceVision/NormalIntegration.py @@ -5,7 +5,7 @@ from meshroom.core.utils import VERBOSE_LEVEL class NormalIntegration(desc.CommandLineNode): commandLine = 'aliceVision_normalIntegration {allParams}' - category = 'PhotometricStereo' + category = 'Photometric Stereo' documentation = ''' Evaluate a depth map from a normals map (currently in development) ''' diff --git a/meshroom/nodes/aliceVision/PhotometricStereo.py b/meshroom/nodes/aliceVision/PhotometricStereo.py index b467622a..a316821f 100644 --- a/meshroom/nodes/aliceVision/PhotometricStereo.py +++ b/meshroom/nodes/aliceVision/PhotometricStereo.py @@ -5,7 +5,7 @@ from meshroom.core.utils import VERBOSE_LEVEL class PhotometricStereo(desc.CommandLineNode): commandLine = 'aliceVision_photometricStereo {allParams}' - category = 'PhotometricStereo' + category = 'Photometric Stereo' 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. The lighting conditions are assumed to be known. @@ -145,7 +145,7 @@ The lighting conditions are assumed to be known. uid=[], group="", # do not export on the command line ), - + desc.File( name="albedo", label="Albedo Maps", diff --git a/meshroom/nodes/aliceVision/SphereDetection.py b/meshroom/nodes/aliceVision/SphereDetection.py index bdea7455..5ee3ff36 100644 --- a/meshroom/nodes/aliceVision/SphereDetection.py +++ b/meshroom/nodes/aliceVision/SphereDetection.py @@ -6,7 +6,7 @@ from meshroom.core.utils import VERBOSE_LEVEL class SphereDetection(desc.CommandLineNode): commandLine = 'aliceVision_sphereDetection {allParams}' - category = 'PhotometricStereo' + category = 'Photometric Stereo' documentation = ''' Detect spheres in pictures. These spheres will be used for lighting calibration. Spheres can be automatically detected or manually defined in the interface.