mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
659 B
29 lines
659 B
Camera |
|
====== |
|
|
|
.. highlight:: cpp |
|
|
|
detail::CameraParams |
|
-------------------- |
|
.. ocv:class:: 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 |
|
};
|
|
|