摘要: 本文就是通过opencv中提供的透视变换函数cv::WarpPerspective(),将左边的图像变换为右边的图像原文网址:http://opencv-code.com/tutorials/automatic-perspective-correction-for-quadrilateral-objects/#comment-193 具体流程为:a)载入图像→灰度化→边缘处理得到边缘图像(edge map)cv::Mat im = cv::imread(filename);cv::Mat gray;cvtColor(im,gray,CV_BGR2GRAY);Canny(gray,gray,10 阅读全文
posted @ 2013-01-18 21:58 ying870510 阅读(12702) 评论(5) 推荐(1) 编辑
摘要: opencv中霍夫直线变换可以得到直线上的两个点坐标,两条直线L1<point(x1,y1),point(x2,y2)>与L2<point(x3,y3),point(x4,y4)>,则两条直线的交点为对于求图像的映射时有用 阅读全文
posted @ 2013-01-18 20:20 ying870510 阅读(1056) 评论(0) 推荐(0) 编辑