opencv2/fastcv/warp.hpp#
#include <opencv2/imgproc.hpp>
Include dependency graph for warp.hpp:
This graph shows which files directly or indirectly include warp.hpp:
Namespaces#
namespace cv
namespace cv::fastcv
Functions#
void cv::fastcv::warpAffine (InputArray _src, OutputArray _dst, InputArray _M, Size dsize, int interpolation=INTER_LINEAR, int borderValue=0)
Performs an affine transformation on an input image using a provided transformation matrix.
void cv::fastcv::warpPerspective (InputArray _src, OutputArray _dst, InputArray _M0, Size dsize, int interpolation, int borderType, const Scalar &borderValue)
Transform an image using perspective transformation, same as cv::warpPerspective but not bit-exact.
void cv::fastcv::warpPerspective2Plane (InputArray _src1, InputArray _src2, OutputArray _dst1, OutputArray _dst2, InputArray _M0, Size dsize)
Perspective warp two images using the same transformation. Bi-linear interpolation is used where applicable. For example, to warp a grayscale image and an alpha image at the same time, or warp two color channels.