mirror of
https://github.com/opencv/opencv.git
synced 2024-11-27 04:36:36 +08:00
30 lines
659 B
ReStructuredText
30 lines
659 B
ReStructuredText
Camera
|
|
======
|
|
|
|
.. highlight:: cpp
|
|
|
|
detail::CameraParams
|
|
--------------------
|
|
.. ocv:struct:: detail::CameraParams
|
|
|
|
Describes camera parameters.
|
|
|
|
.. note:: Translation is assumed to be zero during the whole stitching pipeline.
|
|
|
|
::
|
|
|
|
struct CV_EXPORTS CameraParams
|
|
{
|
|
CameraParams();
|
|
CameraParams(const CameraParams& other);
|
|
const CameraParams& operator =(const CameraParams& other);
|
|
Mat K() const;
|
|
|
|
double focal; // Focal length
|
|
double aspect; // Aspect ratio
|
|
double ppx; // Principal point X
|
|
double ppy; // Principal point Y
|
|
Mat R; // Rotation
|
|
Mat t; // Translation
|
|
};
|