資源描述:
《opencv圖像的創(chuàng)建復(fù)制及保存》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在工程資料-天天文庫。
1、1、工程例子來源自O(shè)penCV中文網(wǎng)中的教程。2、運(yùn)行環(huán)境為win32,VS2008.3、Opencv庫已經(jīng)安裝,如我的安裝目錄如下:D:ProgramFilesOpenCV2.04、項(xiàng)目中包含頭文件與庫目錄,并引用相應(yīng)的庫,具體如下:otherstaffoftheCentre.Duringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin193
2、9servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCounty
3、partyCommitteeSecretary,Ministersand1、命令行參數(shù):otherstaffoftheCentre.Duringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAf
4、terthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,Ministersand源代碼://opencvhello.cpp:定義控制臺(tái)應(yīng)用程序的入口點(diǎn)。//#i
5、nclude"stdafx.h"#include"highgui.h"int_tmain(intargc,_TCHAR*argv[]){IplImage*pImg;//聲明IplImage指針//載入圖像,強(qiáng)制轉(zhuǎn)化為Grayif(argc==3&&(pImg=cvLoadImage(argv[1],0))!=0){IplImage*pImg2=cvCreateImage(cvGetSize(pImg),pImg->depth,pImg->nChannels);cvCopy(pImg,pImg2,NULL);cvSaveI
6、mage(argv[2],pImg2);//把圖像寫入文件otherstaffoftheCentre.Duringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryof
7、thelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,MinistersandcvNamedWindow("Image",1);//創(chuàng)建窗口cvShowImage("Image",pImg
8、);//顯示圖像cvWaitKey(0);//等待按鍵cvDestroyWindow("Image");//銷毀窗口cvReleaseImage(&pImg);//釋放圖像cvReleaseImage(&pImg2);//釋放圖像return0;}}otherstaffoftheCentre.Duringthewar