欢迎来到天天文库
浏览记录
ID:6306421
大小:441.00 KB
页数:7页
时间:2018-01-09
《ccd影像监控系统与影像处理技术》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、實驗二CCD影像監控系統與影像處理技術一、實驗題目1.設計一程式,能擷取CCD之影像,達成監控的目地。二、實驗目的:藉由此實驗,讓學生熟悉影像處理之技術。三、實驗儀器:WEBCam一台四、實驗結果與程式:監控主程式畫面(a)手形偵測(b)臉型偵測(c)人型偵測程式碼#include#pragmahdrstop#include"Unit1.h"#include"Unit2.h"//---------------------------------------------------------------------------#pragmapackage(smart_ini
2、t)#pragmalink"Img"#pragmalink"MultiCapture"#pragmalink"Img"#pragmaresource"*.dfm"TForm1*Form1;Graphics::TBitmap*Bitmap1=newGraphics::TBitmap;Graphics::TBitmap*Bitmap2=newGraphics::TBitmap;Graphics::TBitmap*Bitmap3=newGraphics::TBitmap;byte*ptr1,*ptr2,*ptr3;//--------------------------------------
3、-------------------------------------__fastcallTForm1::TForm1(TComponent*Owner):TForm(Owner){Bitmap1->Height=MultiCapture1->Height;Bitmap1->Width=MultiCapture1->Width;Bitmap1->PixelFormat=pf24bit;Bitmap2->Height=MultiCapture1->Height;Bitmap2->Width=MultiCapture1->Width;Bitmap2->PixelFormat=pf24bi
4、t;Bitmap3->Height=MultiCapture1->Height;Bitmap3->Width=MultiCapture1->Width;Bitmap3->PixelFormat=pf24bit;}//---------------------------------------------------------------------------void__fastcallTForm1::Button1Click(TObject*Sender){unsignedlong*bit1;unsignedintcount;COLORREFcolor;bit1=MultiCapt
5、ure1->bits;for(inty=0;y<480;y++){ptr1=(byte*)Bitmap1->ScanLine[y];for(intx=0;x<640;x++){count=(479-y)*640+x;//由於MultiCapture物件的起始座標點(0,0)是在左下角,而COLORREF這個函式//所取的RGB值是從左上為啟始座標所開始取的,所以要透過座標之間的轉換才可正確取值color=*(bit1+count);ptr1[x*3]=GetRValue(color);ptr1[x*3+1]=GetGValue(color);ptr1[x*3+2]=GetBValue(c
6、olor);ptr1[x*3]=(ptr1[x*3]+ptr1[x*3+1]+ptr1[x*3+2])/3;ptr1[x*3+1]=ptr1[x*3];ptr1[x*3+2]=ptr1[x*3];}}Timer1->Enabled=true;}//---------------------------------------------------------------------------void__fastcallTForm1::MultiCapture1ReceiveImage(TObject*Sender){//}//-----------------------------
7、----------------------------------------------void__fastcallTForm1::Button2Click(TObject*Sender){MultiCapture1->Start();}//---------------------------------------------------------------------------void__fastcallTForm1
此文档下载收益归作者所有