Updated the stitching module docs
This commit is contained in:
parent
69b670bdaa
commit
9fa6edf281
29
modules/stitching/doc/camera.rst
Normal file
29
modules/stitching/doc/camera.rst
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
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
|
||||||
|
};
|
@ -6,6 +6,7 @@ stitching. Images stitching
|
|||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
||||||
high_level
|
high_level
|
||||||
|
camera
|
||||||
matching
|
matching
|
||||||
motion_estimation
|
motion_estimation
|
||||||
autocalib
|
autocalib
|
||||||
|
Loading…
x
Reference in New Issue
Block a user