Commit 9fa6edf2 authored by Alexey Spizhevoy's avatar Alexey Spizhevoy

Updated the stitching module docs

parent 69b670bd
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
high_level
camera
matching
motion_estimation
autocalib
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment