From ef33aabe5eea0d7545681c00cfbe080b71a82f3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Candice=20Bent=C3=A9jac?= Date: Thu, 6 Mar 2025 14:42:48 +0100 Subject: [PATCH] [nodes] ExportImages: Fix category and `namingMode` parameter Change the category to "Export" instead of "Utils" and align the default value of the `namingMode` parameter with the one used in the AliceVision's executable. Moreover, the value "viewId" was incorrect, as "viewid" if the expected one. --- meshroom/nodes/aliceVision/ExportImages.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meshroom/nodes/aliceVision/ExportImages.py b/meshroom/nodes/aliceVision/ExportImages.py index 31a9fe75..ae35cb61 100644 --- a/meshroom/nodes/aliceVision/ExportImages.py +++ b/meshroom/nodes/aliceVision/ExportImages.py @@ -10,7 +10,7 @@ class ExportImages(desc.AVCommandLineNode): parallelization = desc.Parallelization(blockSize=40) commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}' - category = 'Utils' + category = 'Export' documentation = ''' Export images referenced in the input sfmData by transforming them to adapt to the required target intrinsics. For example, the target @@ -49,10 +49,10 @@ class ExportImages(desc.AVCommandLineNode): name="namingMode", label="Naming mode", description="image naming mode :\n" - " - viewId: viewid.ext.\n" - " - frameId: Frameid.ext.\n" + " - viewid: viewid.ext.\n" + " - frameid: Frameid.ext.\n" " - keep: Keep original name.\n", - value="viewId", + value="frameid", values=["viewid", "frameid", "keep"], ), desc.ChoiceParam(