• 大小: 1.36MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-10
  • 语言: 其他
  • 标签: 透视变换  opencv  

资源简介

opencv做透视变换的程序,内含测试图片,运行前需要配置opencv,右键工程属性,连接器,输入,附加依赖项中输入你的opencv版本的lib文件名

资源截图

代码片段和文件信息

#include   
#include   

int main(int argc char** argv)  
{  
CvPoint2D32f srcTri[4] dstTri[4]; //二维坐标下的点,类型为浮点  
//CvMat* rot_mat = cvCreateMat( 2 3 CV_32FC1 );  //多通道矩阵  
CvMat* warp_mat = cvCreateMat( 3 3 CV_32FC1 );  
IplImage *src *dst;  
    double t;
src = cvLoadImage( “..//jianzhu.jpg“ 1 ); 

dst = cvCloneImage( src );  //制作图像的完整拷贝  
dst ->origin = src ->origin;    
/* 
int origin; /* 0 - 顶—左结构 
1 - 底—左结构 (Windows bitmaps 风格)  
*/  
cvZero( dst );  //清空数组  

//计算矩阵仿射变换  
srcTri[0].x = 0;  
srcTri[0].y = 0;  

srcTri[1].x = src -> width - 1;  //缩小一个像素  
srcTri[1].y = 0; 

srcTri[2].x = 0;  
srcTri[2].y = src -> height - 1;  

srcTri[3].x = src -> width - 1;  //bot right  
srcTri[3].y = src -> height - 1;  

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      30720  2013-01-20 16:13  WarpPerspective\Debug\WarpPerspective.exe

     文件     357256  2013-01-20 16:13  WarpPerspective\Debug\WarpPerspective.ilk

     文件    1207296  2013-01-20 16:13  WarpPerspective\Debug\WarpPerspective.pdb

     文件      95730  2013-01-20 15:46  WarpPerspective\jianzhu.jpg

     文件       9756  2013-01-20 16:13  WarpPerspective\WarpPerspective\Debug\BuildLog.htm

     文件         67  2013-01-20 16:13  WarpPerspective\WarpPerspective\Debug\mt.dep

     文件     494592  2013-01-20 16:13  WarpPerspective\WarpPerspective\Debug\vc90.idb

     文件     905216  2013-01-20 16:13  WarpPerspective\WarpPerspective\Debug\vc90.pdb

     文件        621  2013-01-20 16:13  WarpPerspective\WarpPerspective\Debug\WarpPerspective.exe.intermediate.manifest

     文件     103158  2013-01-20 16:13  WarpPerspective\WarpPerspective\Debug\WarpPerspective.obj

     文件       1715  2013-01-20 16:13  WarpPerspective\WarpPerspective\WarpPerspective.cpp

     文件       4105  2013-01-20 16:02  WarpPerspective\WarpPerspective\WarpPerspective.vcproj

     文件       1423  2013-01-20 16:15  WarpPerspective\WarpPerspective\WarpPerspective.vcproj.20120117-0903.飞屋环游.user

     文件    4631552  2013-01-20 16:15  WarpPerspective\WarpPerspective.ncb

     文件        911  2013-01-20 16:01  WarpPerspective\WarpPerspective.sln

    ..A..H.      9728  2013-01-20 16:15  WarpPerspective\WarpPerspective.suo

     目录          0  2013-01-20 16:13  WarpPerspective\WarpPerspective\Debug

     目录          0  2013-01-20 16:13  WarpPerspective\Debug

     目录          0  2013-01-20 16:13  WarpPerspective\WarpPerspective

     目录          0  2013-01-20 16:02  WarpPerspective

----------- ---------  ---------- -----  ----

              7853846                    20


评论

共有 条评论