資源簡介
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
評論
共有 條評論