1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
<?xml version="1.0"?>
<root>
<!--This file stores intrinsic camera parameters used
in the vpCameraParameters Class of ViSP available
at https://visp.inria.fr/download/ .
It can be read with the parse method of
the vpXmlParserCamera class.-->
<camera>
<!--Name of the camera-->
<name>color_camera</name>
<!--Size of the image on which camera calibration was performed-->
<image_width>640</image_width>
<image_height>480</image_height>
<!--Intrinsic camera parameters computed for each projection model-->
<model>
<!--Projection model type-->
<type>perspectiveProjWithDistortion</type>
<!--Pixel ratio-->
<px>605.146728515625</px>
<py>604.79150390625</py>
<!--Principal point-->
<u0>325.53253173828125</u0>
<v0>244.95083618164062</v0>
<!--Undistorted to distorted distortion parameter-->
<kud>-0</kud>
<!--Distorted to undistorted distortion parameter-->
<kdu>0</kdu>
</model>
</camera>
<camera>
<!--Name of the camera-->
<name>depth_camera</name>
<!--Size of the image on which camera calibration was performed-->
<image_width>640</image_width>
<image_height>480</image_height>
<!--Intrinsic camera parameters computed for each projection model-->
<model>
<!--Projection model type-->
<type>perspectiveProjWithDistortion</type>
<!--Pixel ratio-->
<px>605.146728515625</px>
<py>604.79150390625</py>
<!--Principal point-->
<u0>325.53253173828125</u0>
<v0>244.95083618164062</v0>
<!--Undistorted to distorted distortion parameter-->
<kud>-0</kud>
<!--Distorted to undistorted distortion parameter-->
<kdu>0</kdu>
</model>
</camera>
<camera>
<!--Name of the camera-->
<name>infrared_camera</name>
<!--Size of the image on which camera calibration was performed-->
<image_width>640</image_width>
<image_height>480</image_height>
<!--Intrinsic camera parameters computed for each projection model-->
<model>
<!--Projection model type-->
<type>perspectiveProjWithDistortion</type>
<!--Pixel ratio-->
<px>381.7528076171875</px>
<py>381.7528076171875</py>
<!--Principal point-->
<u0>323.32614135742188</u0>
<v0>236.82505798339844</v0>
<!--Undistorted to distorted distortion parameter-->
<kud>-0</kud>
<!--Distorted to undistorted distortion parameter-->
<kdu>0</kdu>
</model>
</camera>
</root>
|