How to Render Image With a fixed camera
Hello,
Drog and drop a preferred camera from the 1Ds view to the 3Ds view, and the view should be set to that camera. Now you can render an image from that camera view.
Can I import and export 4Dcamera data, because I want to use it in many files
It is not possible to render 4D data, but you can render the cameras used for alignment.
To do so you need to have text file:
$Using("CapturingReality.Report.ProjectInformationExportFunctionSet")
$Using("CapturingReality.Report.ModelExportFunctionSet")
$Using("CapturingReality.Report.SfmExportFunctionSet")
$ExportCameras( Camera $(index) : $(imageName)$(imageExt)
)
$ExportProjectInfo($ExportCameras($RenderMesh( actualModelGUID, "render_$(cameraIndex).png", width, height, cameraIndex )))
then in CLI command line use -exportReport command like:
-exportReport "path to export txt file" "path to text file from previous commands"
This will generate model render for your images.
Thanks, I’ll give it a try