Include image px width and height in the Internal/External Camera Parameters CSV export

Hi Josh,

you can create your own export, which will contain the width and height. As these are not a part of internal/external camera parameters, this could be a solution for you.

You can find more about this in the application help under Cameras (Functions and Variables Available in the Reports). More you can find in Report Templates help section

$ExportCameras(
    Index: $(index)
    Image width [pixels]: $(width)
    Image height [pixels]: $(height)
)

Or you can change the file calibration.xml in  C:\Program Files\Capturing Reality\RealityCapture to:

<format id=“{0CA18733-1EBC-4254-9974-17197EB409BD}” mask=“*.csv” descID=“8370” desc=“Internal/External camera parameters” writer=“cvs” requires=“component”>
        <body EulerFormat=“zyx”>#name, width,height ,x,y,alt,heading,pitch,roll,f,px,py,k1,k2,k3,k4,t1,t2
$ExportCameras($(imageName)$(imageExt),$(width),$(height),$(x),$(y),$(z),$(yaw),$(pitch),$(roll),$(f*36),$(px),$(py),$(k1),$(k2),$(k3),$(k4),$(t1),$(t2)
)</body>
    </format>

which will export the csv also with width and height.