Hi,
I’m running a trial of the CLI to try and automate our workflow.
I need to be able to process options on certain images in the imported folder via the cli, then process the remaining images in the same folder.
It looks like I can use the -importImageSelection switch to specify images in the imported folder, but how do I list them in the string? A wildcard would be best, but I’ve tried ; and , separators and it just crashes RC.
This is the string I’m using to kick off the job. It all works well apart from the -importImageSelection bits.
-addFolder “C:\MyFolder\double\images” -importImageSelection “C:\MyFolder\double\images\Polarised000.png;C:\MyFolder\double\images\Polarised001.png” -enableMeshing false -enableTexturingAndColoring false -align -calculateNormalModel -calculateTexture -enableTexturingAndColoring true -importImageSelection “C:\MyFolder\double\images\Polarised000.png;C:\MyFolder\double\images\Polarised001.png” -enableTexturingAndColoring false -exportModel “Model 1” “C:\MyFolder\double\rcProcessed.obj” “C:\MyFolder\double\objSettings.xml” -save C:\MyFolder\double\doubleProj.rcproj
So it should do this:
- Add the image folder
- Select the named images
- Turn off meshing
- Turn off Texture & Colouring
- Align those images
- Calculate the normal model
- Calculate the texture
- Turn Texture & Colouring back on for those images
- Select another set of images
- Turn off Texturing and Colouring on the new image set
- Export the Model
- Save the rcproj
Basically we shoot with polarised and unpolarised setups, then use those to generate 2 image maps and an fbx model out of Reality Capture.
Any pointers appreciated!