透视变换

【图像处理】透视变换 Perspective Transformation

透视变换(Perspective Transformation)是将图片投影到一个新的视平面(Viewing Plane),也称作投影映射(Projective Mapping)。通用的变换公式为:

u,v是原始图片左边,对应得到变换后的图片坐标x,y,其中
变换矩阵可以拆成4部分,表示线性变换,比如scaling,shearing和ratotion。用于平移,产生透视变换。所以可以理解成仿射等是透视变换的特殊形式。经过透视变换之后的图片通常不是平行四边形(除非映射视平面和原来平面平行的情况)。

重写之前的变换公式可以得到:

所以,已知变换对应的几个点就可以求取变换公式。反之,特定的变换公式也能新的变换后的图片。简单的看一个正方形到四边形的变换:
变换的4组对应点可以表示成:

根据变换公式得到:

定义几个辅助变量:

都为0时变换平面与原来是平行的,可以得到:

不为0时,得到:

求解出的变换矩阵就可以将一个正方形变换到四边形。反之,四边形变换到正方形也是一样的。于是,我们通过两次变换:四边形变换到正方形+正方形变换到四边形就可以将任意一个四边形变换到另一个四边形。

看一段代码:

[cpp] view plain copy

  1. PerspectiveTransform::PerspectiveTransform(float inA11, float inA21,
  2. float inA31, float inA12,
  3. float inA22, float inA32,
  4. float inA13, float inA23,
  5. float inA33) :
  6. a11(inA11), a12(inA12), a13(inA13), a21(inA21), a22(inA22), a23(inA23),
  7. a31(inA31), a32(inA32), a33(inA33) {}
  8. PerspectiveTransform PerspectiveTransform::quadrilateralToQuadrilateral(float x0, float y0, float x1, float y1,
  9. float x2, float y2, float x3, float y3, float x0p, float y0p, float x1p, float y1p, float x2p, float y2p,
  10. float x3p, float y3p) {
  11. PerspectiveTransform qToS = PerspectiveTransform::quadrilateralToSquare(x0, y0, x1, y1, x2, y2, x3, y3);
  12. PerspectiveTransform sToQ =
  13. PerspectiveTransform::squareToQuadrilateral(x0p, y0p, x1p, y1p, x2p, y2p, x3p, y3p);
  14. return sToQ.times(qToS);
  15. }
  16. PerspectiveTransform PerspectiveTransform::squareToQuadrilateral(float x0, float y0, float x1, float y1, float x2,
  17. float y2, float x3, float y3) {
  18. float dx3 = x0 - x1 + x2 - x3;
  19. float dy3 = y0 - y1 + y2 - y3;
  20. if (dx3 == 0.0f && dy3 == 0.0f) {
  21. PerspectiveTransform result(PerspectiveTransform(x1 - x0, x2 - x1, x0, y1 - y0, y2 - y1, y0, 0.0f,
  22. 0.0f, 1.0f));
  23. return result;
  24. } else {
  25. float dx1 = x1 - x2;
  26. float dx2 = x3 - x2;
  27. float dy1 = y1 - y2;
  28. float dy2 = y3 - y2;
  29. float denominator = dx1 * dy2 - dx2 * dy1;
  30. float a13 = (dx3 * dy2 - dx2 * dy3) / denominator;
  31. float a23 = (dx1 * dy3 - dx3 * dy1) / denominator;
  32. PerspectiveTransform result(PerspectiveTransform(x1 - x0 + a13 * x1, x3 - x0 + a23 * x3, x0, y1 - y0
  33. + a13 * y1, y3 - y0 + a23 * y3, y0, a13, a23, 1.0f));
  34. return result;
  35. }
  36. }
  37. PerspectiveTransform PerspectiveTransform::quadrilateralToSquare(float x0, float y0, float x1, float y1, float x2,
  38. float y2, float x3, float y3) {
  39. // Here, the adjoint serves as the inverse:
  40. return squareToQuadrilateral(x0, y0, x1, y1, x2, y2, x3, y3).buildAdjoint();
  41. }
  42. PerspectiveTransform PerspectiveTransform::buildAdjoint() {
  43. // Adjoint is the transpose of the cofactor matrix:
  44. PerspectiveTransform result(PerspectiveTransform(a22 * a33 - a23 * a32, a23 * a31 - a21 * a33, a21 * a32
  45. - a22 * a31, a13 * a32 - a12 * a33, a11 * a33 - a13 * a31, a12 * a31 - a11 * a32, a12 * a23 - a13 * a22,
  46. a13 * a21 - a11 * a23, a11 * a22 - a12 * a21));
  47. return result;
  48. }
  49. PerspectiveTransform PerspectiveTransform::times(PerspectiveTransform other) {
  50. PerspectiveTransform result(PerspectiveTransform(a11 * other.a11 + a21 * other.a12 + a31 * other.a13,
  51. a11 * other.a21 + a21 * other.a22 + a31 * other.a23, a11 * other.a31 + a21 * other.a32 + a31
  52. * other.a33, a12 * other.a11 + a22 * other.a12 + a32 * other.a13, a12 * other.a21 + a22
  53. * other.a22 + a32 * other.a23, a12 * other.a31 + a22 * other.a32 + a32 * other.a33, a13
  54. * other.a11 + a23 * other.a12 + a33 * other.a13, a13 * other.a21 + a23 * other.a22 + a33
  55. * other.a23, a13 * other.a31 + a23 * other.a32 + a33 * other.a33));
  56. return result;
  57. }
  58. void PerspectiveTransform::transformPoints(vector<float> &points) {
  59. int max = points.size();
  60. for (int i = 0; i < max; i += 2) {
  61. float x = points[i];
  62. float y = points[i + 1];
  63. float denominator = a13 * x + a23 * y + a33;
  64. points[i] = (a11 * x + a21 * y + a31) / denominator;
  65. points[i + 1] = (a12 * x + a22 * y + a32) / denominator;
  66. }
  67. }

对一张透视图片变换回正面图的效果:

[cpp] view plain copy

  1. int main(){
  2. Mat img=imread("boy.png");
  3. int img_height = img.rows;
  4. int img_width = img.cols;
  5. Mat img_trans = Mat::zeros(img_height,img_width,CV_8UC3);
  6. PerspectiveTransform tansform = PerspectiveTransform::quadrilateralToQuadrilateral(
  7. 0,0,
  8. img_width-1,0,
  9. 0,img_height-1,
  10. img_width-1,img_height-1,
  11. 150,250, // top left
  12. 771,0, // top right
  13. 0,1023,// bottom left
  14. 650,1023
  15. );
  16. vector<float> ponits;
  17. for(int i=0;i<img_height;i++){
  18. for(int j=0;j<img_width;j++){
  19. ponits.push_back(j);
  20. ponits.push_back(i);
  21. }
  22. }
  23. tansform.transformPoints(ponits);
  24. for(int i=0;i<img_height;i++){
  25. uchar*  t= img_trans.ptr<uchar>(i);
  26. for (int j=0;j<img_width;j++){
  27. int tmp = i*img_width+j;
  28. int x = ponits[tmp*2];
  29. int y = ponits[tmp*2+1];
  30. if(x<0||x>(img_width-1)||y<0||y>(img_height-1))
  31. continue;
  32. uchar* p = img.ptr<uchar>(y);
  33. t[j*3] = p[x*3];
  34. t[j*3+1] = p[x*3+1];
  35. t[j*3+2] = p[x*3+2];
  36. }
  37. }
  38. imwrite("trans.png",img_trans);
  39. return 0;
  40. }

另外在OpenCV中也实现了基础的透视变换操作,有关函数使用请见下一篇:【OpenCV】透视变换 Perspective Transformation(续)

(转载请注明作者和出处:http://blog.csdn.net/xiaowei_cqu 未经允许请勿用于商业用途)

【OpenCV】透视变换 Perspective Transformation(续)

透视变换的原理和矩阵求解请参见前一篇《透视变换 Perspective Transformation》。在OpenCV中也实现了透视变换的公式求解和变换函数。

求解变换公式的函数:

[cpp] view plain copy

  1. Mat getPerspectiveTransform(const Point2f src[], const Point2f dst[])

输入原始图像和变换之后的图像的对应4个点,便可以得到变换矩阵。之后用求解得到的矩阵输入perspectiveTransform便可以对一组点进行变换:

[cpp] view plain copy

  1. void perspectiveTransform(InputArray src, OutputArray dst, InputArray m)

注意这里src和dst的输入并不是图像,而是图像对应的坐标。应用前一篇的例子,做个相反的变换:

[cpp] view plain copy

  1. int main( )
  2. {
  3. Mat img=imread("boy.png");
  4. int img_height = img.rows;
  5. int img_width = img.cols;
  6. vector<Point2f> corners(4);
  7. corners[0] = Point2f(0,0);
  8. corners[1] = Point2f(img_width-1,0);
  9. corners[2] = Point2f(0,img_height-1);
  10. corners[3] = Point2f(img_width-1,img_height-1);
  11. vector<Point2f> corners_trans(4);
  12. corners_trans[0] = Point2f(150,250);
  13. corners_trans[1] = Point2f(771,0);
  14. corners_trans[2] = Point2f(0,img_height-1);
  15. corners_trans[3] = Point2f(650,img_height-1);
  16. Mat transform = getPerspectiveTransform(corners,corners_trans);
  17. cout<<transform<<endl;
  18. vector<Point2f> ponits, points_trans;
  19. for(int i=0;i<img_height;i++){
  20. for(int j=0;j<img_width;j++){
  21. ponits.push_back(Point2f(j,i));
  22. }
  23. }
  24. perspectiveTransform( ponits, points_trans, transform);
  25. Mat img_trans = Mat::zeros(img_height,img_width,CV_8UC3);
  26. int count = 0;
  27. for(int i=0;i<img_height;i++){
  28. uchar* p = img.ptr<uchar>(i);
  29. for(int j=0;j<img_width;j++){
  30. int y = points_trans[count].y;
  31. int x = points_trans[count].x;
  32. uchar* t = img_trans.ptr<uchar>(y);
  33. t[x*3]  = p[j*3];
  34. t[x*3+1]  = p[j*3+1];
  35. t[x*3+2]  = p[j*3+2];
  36. count++;
  37. }
  38. }
  39. imwrite("boy_trans.png",img_trans);
  40. return 0;
  41. }

得到变换之后的图片:

注意这种将原图变换到对应图像上的方式会有一些没有被填充的点,也就是右图中黑色的小点。解决这种问题一是用差值的方式,再一种比较简单就是不用原图的点变换后对应找新图的坐标,而是直接在新图上找反向变换原图的点。说起来有点绕口,具体见前一篇《透视变换 Perspective Transformation》的代码应该就能懂啦。

除了getPerspectiveTransform()函数,OpenCV还提供了findHomography()的函数,不是用点来找,而是直接用透视平面来找变换公式。这个函数在特征匹配的经典例子中有用到,也非常直观:

[cpp] view plain copy

  1. int main( int argc, char** argv )
  2. {
  3. Mat img_object = imread( argv[1], IMREAD_GRAYSCALE );
  4. Mat img_scene = imread( argv[2], IMREAD_GRAYSCALE );
  5. if( !img_object.data || !img_scene.data )
  6. { std::cout<< " --(!) Error reading images " << std::endl; return -1; }
  7. //-- Step 1: Detect the keypoints using SURF Detector
  8. int minHessian = 400;
  9. SurfFeatureDetector detector( minHessian );
  10. std::vector<KeyPoint> keypoints_object, keypoints_scene;
  11. detector.detect( img_object, keypoints_object );
  12. detector.detect( img_scene, keypoints_scene );
  13. //-- Step 2: Calculate descriptors (feature vectors)
  14. SurfDescriptorExtractor extractor;
  15. Mat descriptors_object, descriptors_scene;
  16. extractor.compute( img_object, keypoints_object, descriptors_object );
  17. extractor.compute( img_scene, keypoints_scene, descriptors_scene );
  18. //-- Step 3: Matching descriptor vectors using FLANN matcher
  19. FlannBasedMatcher matcher;
  20. std::vector< DMatch > matches;
  21. matcher.match( descriptors_object, descriptors_scene, matches );
  22. double max_dist = 0; double min_dist = 100;
  23. //-- Quick calculation of max and min distances between keypoints
  24. for( int i = 0; i < descriptors_object.rows; i++ )
  25. { double dist = matches[i].distance;
  26. if( dist < min_dist ) min_dist = dist;
  27. if( dist > max_dist ) max_dist = dist;
  28. }
  29. printf("-- Max dist : %f \n", max_dist );
  30. printf("-- Min dist : %f \n", min_dist );
  31. //-- Draw only "good" matches (i.e. whose distance is less than 3*min_dist )
  32. std::vector< DMatch > good_matches;
  33. for( int i = 0; i < descriptors_object.rows; i++ )
  34. { if( matches[i].distance < 3*min_dist )
  35. { good_matches.push_back( matches[i]); }
  36. }
  37. Mat img_matches;
  38. drawMatches( img_object, keypoints_object, img_scene, keypoints_scene,
  39. good_matches, img_matches, Scalar::all(-1), Scalar::all(-1),
  40. vector<char>(), DrawMatchesFlags::NOT_DRAW_SINGLE_POINTS );
  41. //-- Localize the object from img_1 in img_2
  42. std::vector<Point2f> obj;
  43. std::vector<Point2f> scene;
  44. for( size_t i = 0; i < good_matches.size(); i++ )
  45. {
  46. //-- Get the keypoints from the good matches
  47. obj.push_back( keypoints_object[ good_matches[i].queryIdx ].pt );
  48. scene.push_back( keypoints_scene[ good_matches[i].trainIdx ].pt );
  49. }
  50. Mat H = findHomography( obj, scene, RANSAC );
  51. //-- Get the corners from the image_1 ( the object to be "detected" )
  52. std::vector<Point2f> obj_corners(4);
  53. obj_corners[0] = Point(0,0); obj_corners[1] = Point( img_object.cols, 0 );
  54. obj_corners[2] = Point( img_object.cols, img_object.rows ); obj_corners[3] = Point( 0, img_object.rows );
  55. std::vector<Point2f> scene_corners(4);
  56. perspectiveTransform( obj_corners, scene_corners, H);
  57. //-- Draw lines between the corners (the mapped object in the scene - image_2 )
  58. Point2f offset( (float)img_object.cols, 0);
  59. line( img_matches, scene_corners[0] + offset, scene_corners[1] + offset, Scalar(0, 255, 0), 4 );
  60. line( img_matches, scene_corners[1] + offset, scene_corners[2] + offset, Scalar( 0, 255, 0), 4 );
  61. line( img_matches, scene_corners[2] + offset, scene_corners[3] + offset, Scalar( 0, 255, 0), 4 );
  62. line( img_matches, scene_corners[3] + offset, scene_corners[0] + offset, Scalar( 0, 255, 0), 4 );
  63. //-- Show detected matches
  64. imshow( "Good Matches & Object detection", img_matches );
  65. waitKey(0);
  66. return 0;
  67. }

代码运行效果:

findHomography()函数直接通过两个平面上相匹配的特征点求出变换公式,之后代码又对原图的四个边缘点进行变换,在右图上画出对应的矩形。这个图也很好地解释了所谓透视变换的“Viewing Plane”。

(转载请注明作者和出处:http://blog.csdn.net/xiaowei_cqu 未经允许请勿用于商业用途)

时间: 2024-08-24 09:45:25

透视变换的相关文章

Duanxx的图像处理学习: 透视变换(二)

在<Duanxx的图像处理学习:透视变换(一)>中简要的说明了透视变化的算法,这里再进一步的对透视变换做说明. 基于前面的说明,可以很容易发现, 一个变换矩阵有如下你的分区特性: 一般来说,我有一个三维变换矩阵如下: 矩阵中的元素(p , q , r)取非全0时,能产生透视效果 一.一点透视 来看下面一张图: 现在是以z轴上的一点(0,0,d,1)为投影中心,计算P(x,y,z,1)点在XOY平面上的透视投影. 那么,现在很容易知道: 即: 这里取: 那么变换矩阵T,就为: 结果的其次坐标表示

仿射变换与透视变换

仿射变换保证物体形状的"平直性"和"平行性".透视变换不能保证物体形状的"平行性".仿射变换是透视变换的特殊形式. 将透视变换写成3*3矩阵形式,即为M; 以下面这张图为例,实现仿射变换,包括旋转,平移,缩放,剪切,以图像中心为变换中心: 仿射变换 旋转(逆时针旋转30度) Mat M=Mat::eye(3,3, CV_32FC1); float alpha=PI/6; float tx=0; float ty=0; float scale=1;

神奇的透视变换

1. 理论公式 透视变换(Pespective Transform)是将一个视平面上的物体转换到一个新的视平面.变换公式如下: 其中等式右边的u,v是源图片的坐标,在变换后图像中的对应坐标x, y,可以用下式计算得到: 据此,原图像和透视变换后的目标图像中的点,对应转换关系如下: 变换矩阵的子矩阵表示线性变换,比如scaling(缩放),shearing和rotation(旋转).表示平移.产生透视变换.所以可以认为仿射变换是透视变换的特殊形式.到此,我们解释了透视变换的理论公式,那透视变换矩阵

第六章 - 图像变换 - 图像拉伸、收缩、扭曲、旋转[2] - 透视变换(cvWarpPerspective)

透视变换(单应性?)能提供更大的灵活性,但是一个透视投影并不是线性变换,因此所采用的映射矩阵是3*3,且控点变为4个,其他方面与仿射变换完全类似,下面的例程是针对密集变换,稀疏图像变换则采用cvPerspectiveTransform函数来处理. ------------------------------------------------------------------------------------------------ WarpPerspective 对图像进行透视变换 voi

OpenCV】透视变换 Perspective Transformation(续)

载分 [OpenCV]透视变换 Perspective Transformation(续) 分类: [图像处理] [编程语言] 2014-05-27 09:39 2776人阅读 评论(13) 收藏 举报 透视变换的原理和矩阵求解请参见前一篇<透视变换 Perspective Transformation>.在OpenCV中也实现了透视变换的公式求解和变换函数. 求解变换公式的函数: [cpp] view plaincopyprint? Mat getPerspectiveTransform(c

opencv透视变换

opencv透视变换 实现透视变换 目标: 在这篇教程中你将学到: 1.如何进行透视变化 2.如何生存透视变换矩阵 理论: 什么是透视变换: 1.透视变换(Perspective Transformation)是将图片投影到一个新的视平面(Viewing Plane),也称作投影映射(Projective Mapping). 2.换算公式 u,v是原始图片左边,对应得到变换后的图片坐标x,y,其中.变换矩阵可以拆成4部分,表示线性变换,比如scaling,shearing和ratotion.用于

图像几何变换之透视变换

1. 基本原理 透视变换(Perspective Transformation)的本质是将图像投影到一个新的视平面,其通用变换公式为: (u,v)为原始图像像素坐标,(x=x’/w’,y=y’/w’)为变换之后的图像像素坐标.透视变换矩阵图解如下: 仿射变换(Affine Transformation)可以理解为透视变换的特殊形式.透视变换的数学表达式为: 所以,给定透视变换对应的四对像素点坐标,即可求得透视变换矩阵:反之,给定透视变换矩阵,即可对图像或像素点坐标完成透视变换,如下图所示: 2.

Nani_xiao的图像处理学习笔记:透视变换(二):X,Y方向校正原理

接着上一篇进行,上一篇为: Nani_xiao的图像处理学习笔记:透视变换(一) 这里采用一点透视投影 X 方向校正 图2 是透视投影的灭点原理图.在不考虑其他畸变的情况下,边ab 和边cd 平行于X 轴, 而边ac 和边bd 则和X 轴成一定的夹角.根据a .b .c .d 点的图像坐标,可以求出透视投影的灭点e 的坐标(mx , my)(在图像坐标系下). 然后根据透视缩小效应, 对其进行反运算, 进行X 方向的校正.在X 方向的校正中, 可以选择图像高度(0- H - 1)任意一条水平线的

Nani_xiao的图像处理学习笔记:透视变换(三):校正步骤

接着上两篇进行: Nani_xiao的图像处理学习笔记:透视变换(一) Nani_xiao的图像处理学习笔记:透视变换(二):X,Y方向校正原理 图像透视变换校正步骤为: 1.      选取控制点的坐标: 2.      如果控制点存在倾斜现象, 则进行Y方向和X 方向错切: 3.      计算灭点的坐标(mx ,my ): 4.      进行X 方向的校正, 并输出校正后的图像: 5.      进行Y方向的校正, 并输出校正后的图像. 这里先把步骤列出,以后再根据实际效果补图

【练习4.7】使用键盘控制透视变换和仿射变换的变换矩阵:实现拉伸、收缩、扭曲、旋转

<学习OpenCV>中文版第4章第7题  注意:操作的使用将输入法状态切换到“英文”状态 提纲 题目要求 程序代码 结果图片 题目要求: a.使用数字键1~9以及数字键与Shift的组合,实现透视变换变换矩阵中对应元素的增大和缩小 b.使用上下方向键实现仿射变换变换矩阵中对应元素的增大和缩小,以实现对图片的缩放. c.使用左右方向键实现仿射变换变换矩阵中对应元素的增大和缩小,以实现对图片的旋转. 程序代码: 1 #include "stdafx.h" 2 #include