Hi there,
I’ve been creating batch scripts to automate the Reality Capture Process, and so far have a pre and post editing script to process a single image folder/model.
I’m now trying to find a script that would process the script for multiple image folders, one after another, and export into a Model folder, and I understand this could entail adding variables to the script, however, I’m not sure how to correctly apply this to get the desired result.
Here’s the initial script for processing one data set.
“C:\Program Files\Capturing Reality\RealityCapture\RealityCapture.exe” ^
-save “%~dp0Reality Capture\Project.rcproj” ^
-addFolder “%~dp0\Project\images” ^
-detectMarkers ^
-importGroundControlPoints “%~dp0DetectPositions.txt” ^
-align ^
-save ^
-selectMaximalComponent ^
-setReconstructionRegion “%~dp0forCut.rcbox” ^
-calculateHighModel ^
-save ^
-selectLargestModelComponent ^
-invertTrianglesSelection ^
-removeSelectedTriangles ^
-renameSelectedModel “Unedited” ^
-exportSelectedModel “%~dp0*\Models\Project_Unedited.obj” ^
-save