Affine warper that uses rotations and translations. More...
#include <opencv2/stitching/detail/warpers.hpp>


Public Member Functions | |
| AffineWarper (float scale=1.f) | |
| Construct an instance of the affine warper class. More... | |
| virtual Rect | buildMaps (Size src_size, InputArray K, InputArray R, InputArray T, OutputArray xmap, OutputArray ymap) |
| Rect | buildMaps (Size src_size, InputArray K, InputArray R, OutputArray xmap, OutputArray ymap) CV_OVERRIDE |
| Builds the projection maps according to the given camera data. More... | |
| float | getScale () const CV_OVERRIDE |
| void | setScale (float val) CV_OVERRIDE |
| virtual Point | warp (InputArray src, InputArray K, InputArray R, InputArray T, int interp_mode, int border_mode, OutputArray dst) |
| Point | warp (InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, OutputArray dst) CV_OVERRIDE |
| Projects the image. More... | |
| void | warpBackward (InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, Size dst_size, OutputArray dst) CV_OVERRIDE |
| Projects the image backward. More... | |
| Point2f | warpPoint (const Point2f &pt, InputArray K, InputArray R, InputArray T) |
| Point2f | warpPoint (const Point2f &pt, InputArray K, InputArray R) CV_OVERRIDE |
| Projects the image point. More... | |
| Rect | warpRoi (Size src_size, InputArray K, InputArray R, InputArray T) |
| Rect | warpRoi (Size src_size, InputArray K, InputArray R) CV_OVERRIDE |
Protected Member Functions | |
| void | detectResultRoi (Size src_size, Point &dst_tl, Point &dst_br) CV_OVERRIDE |
| void | detectResultRoiByBorder (Size src_size, Point &dst_tl, Point &dst_br) |
| void | getRTfromHomogeneous (InputArray H, Mat &R, Mat &T) |
| Extracts rotation and translation matrices from matrix H representing affine transformation in homogeneous coordinates. More... | |
Protected Attributes | |
| PlaneProjector | projector_ |
Affine warper that uses rotations and translations.
Uses affine transformation in homogeneous coordinates to represent both rotation and translation in camera rotation matrix.
|
inline |
Construct an instance of the affine warper class.
| scale | Projected image scale multiplier |
References CV_OUT, and CV_OVERRIDE.
|
virtualinherited |
Reimplemented in cv::detail::PlaneWarperGpu.
|
virtual |
Builds the projection maps according to the given camera data.
| src_size | Source image size |
| K | Camera intrinsic parameters |
| R | Camera rotation matrix |
| xmap | Projection map for the x axis |
| ymap | Projection map for the y axis |
Reimplemented from cv::detail::PlaneWarper.
|
protectedvirtualinherited |
Reimplemented from cv::detail::RotationWarperBase< PlaneProjector >.
|
protectedinherited |
|
protected |
Extracts rotation and translation matrices from matrix H representing affine transformation in homogeneous coordinates.
|
inlinevirtualinherited |
Reimplemented from cv::detail::RotationWarper.
|
inlinevirtualinherited |
Reimplemented from cv::detail::RotationWarper.
|
virtualinherited |
Reimplemented in cv::detail::PlaneWarperGpu.
|
virtual |
Projects the image.
| src | Source image |
| K | Camera intrinsic parameters |
| R | Camera rotation matrix |
| interp_mode | Interpolation mode |
| border_mode | Border extrapolation mode |
| dst | Projected image |
Reimplemented from cv::detail::PlaneWarper.
|
virtualinherited |
Projects the image backward.
| src | Projected image |
| K | Camera intrinsic parameters |
| R | Camera rotation matrix |
| interp_mode | Interpolation mode |
| border_mode | Border extrapolation mode |
| dst_size | Backward-projected image size |
| dst | Backward-projected image |
Implements cv::detail::RotationWarper.
|
inherited |
|
virtual |
Projects the image point.
| pt | Source point |
| K | Camera intrinsic parameters |
| R | Camera rotation matrix |
Reimplemented from cv::detail::PlaneWarper.
|
inherited |
|
virtual |
| src_size | Source image bounding box |
| K | Camera intrinsic parameters |
| R | Camera rotation matrix |
Reimplemented from cv::detail::PlaneWarper.
|
protectedinherited |