本文主要讲解opencv中重映射变换和放射变换。包括remap函数、getAffineTransform 函数、warpAffine 函数、getRotationMatrix2D 函数。
1、remap函数
C++: voidremap(InputArray src, OutputArray dst, InputArray map1, InputArray map2, int interpolation, intborderMode=BORDER_CONSTANT, const Scalar& borderValue=Scalar())
Applies a generic geometrical transformation to an image. //对图像进行简单的几何变换
The function remap transforms the source image using the specified map: //函数remap使用特定映射转换原图像
dst(x,y)=src(mapx(x,y),mapy(x