CvvImage类以及在MFC中显示IplImage图像的方法

更新时间:2024-01-31 08:33:01 阅读量: 教育文库 文档下载

说明:文章内容仅供预览,部分内容可能不全。下载后的文档,内容与下面显示的完全一致。下载之前请确认下面内容是否您想要的,是否完整无缺。

平常使用Open CV时总是跳出一个个窗口,很难将项目进行系统集成,特别是在MFC等Windows环境中加载显示Open CV中的IplImage图像;

使用Open CVhighgui.h 中定义的CvvImage类,可以很好的实现Open CV和Windows MFC显示接口;先介绍一下CvvImage类:

由于CvvImage是在 highgui.h 头文件中声明的,因此如果您的程序中需要使用,则必须在开头包含此头文件 #include CvvImage对应CImage宏: #define CImageCvvImage 注意事项:

?

由于CImage太常见, 很容易造成冲突, 因此建议不要使用该宏(可以直接删去此宏定义)。

警告:参数中含有HDC(注:一种windows系统下定义的变量类型,用来描述设备描述表的句柄类型)类型的并不能保证移植到其他平台,例如Show/DrawToHDC等。

后文中的DC,即device context(设备环境),一般可以理解为windows操作系统为方便绘图而抽象的”绘图表面“,“往窗口上绘图”,有时也被说成是“往窗口DC上绘图”。

?

?

CvvImage::Create

boolCvvImage::Create(int w, int h, intbpp, int origin); 创建一个图像。 成功返回true, 失败返回false。 w

图像宽 h

图像高 bpp

每个像素的bit数, 值等于像素深度乘以通道数 origin

0 - 顶—左结构, 1 - 底—左结构 (Windows bitmaps 风格) 例:

// 创建一个400行600列的, IPL_DEPTH_8U类型的3通道图像, 顶—左结构

CvvImageimg;

bool flag =img.Create(600,400, IPL_DEPTH_8U*3,0); if(!flag)

printf(\创建图像失败!\);

CvvImage::CopyOf

void CvvImage::CopyOf(CvvImage&img, intdesired_color); void CvvImage::CopyOf(IplImage* img, intdesired_color); 从img复制图像到当前的对象中。 img

要复制的图像。 desired_color

为复制后图像的通道数, 复制后图像的像素深度为8bit。 例:

// 读一个图像, 然后复制为1个3通道的彩色图像

CvvImage img1, img2;

img1.Load(\); img2.CopyOf(img1, 3);

CvvImage::Load

boolCvvImage::Load(const char* filename, intdesired_color); 装载一个图像。 filename

图像文件名称。 desired_color

图像波段数, 和cvLoadImage类似。

CvvImage::LoadRect

boolCvvImage::LoadRect(const char* filename, intdesired_color, CvRectrect);

从图像读出一个区域。

filename

图像名称。 desired_color

图像波段数, 和cvLoadImage类似。 rect

要读取的图像范围。 注

LoadRect是先用Load装载一个图像, 然后再将rect设置为图像的ROI区域, 然后复制图像得到,因此, 如果一个图像很大(例如几百MB), 即使想从中只读几个像素也是会失败的。

CvvImage::Save

boolCvvImage::Save(const char* filename); 保存图像。 和cvSaveImage相似。

CvvImage::Show

void CvvImage::Show(const char* window); 显示一个图像。 和cvShowImage相似。

CvvImage::Show

void CvvImage::Show(HDC dc, int x, int y, int w, int h, intfrom_x, intfrom_y);

绘制图像的部分到DC。 图像没有缩放。此函数仅在Windows下有效。 dc

设备描述符。 x

局部图像显示在DC上,从DC上的第x列开始。 y

局部图像显示在DC上,从DC上的第y列开始。 (x,y)为局部图像显示在DC上的起始位置。

w

局部图像宽度。 h

局部图像高度。 from_x

从图像的第from_x列开始显示。 from_y

从图像的第from_y行开始显示。 例:

// 从图像10行20列开始, 显示400行600列图像到设备描述符的100行200列开始的位置

CvvImageimg;

img.Load(\);

img.Show(hDC,200,100,600,400,20,10);

CvvImage::DrawToHDC

void CImage::DrawToHDC(HDC hDCDst, RECT* pDstRect);

绘制图像的ROI区域到DC的pDstRect, 如果图像大小和pDstRect不一致, 图像会拉伸/压缩。此函数仅在Windows下有效。 hDCDst

设备描述符。 pDstRect

对应的设备描述符区域。 例:

CvvImageimg;

img.Load(\);

CRectrect;

rect.left=100; rect.top=200;

rect.right=rect.left+600; rect.bottom=rect.top+400;

img.DrawToHDC(hDC,&rect);

CvvImage::Fill

voidCvvImage::Fill(int color); 以color颜色填充图像。

CvvImage类定义

/* CvvImage class definition */ class CV_EXPORTS CvvImage {

public: CvvImage();

virtual ~CvvImage();

/* Create image (BGR or grayscale) */

virtualbool Create(int width,int

height,intbits_per_pixel,intimage_origin=0);

/* Load image from specified file */

virtualbool Load(constchar* filename,intdesired_color=1);

/* Load rectangle from the file */

virtualboolLoadRect(constchar* filename, intdesired_color,CvRect r );

#ifdef WIN32

virtualboolLoadRect(constchar* filename, intdesired_color, RECT r ) {

returnLoadRect( filename,desired_color,

cvRect(r.left,r.top,r.right-r.left,r.bottom-r.top)); }

#endif

/* Save entire image to specified file. */ virtualbool Save(constchar* filename );

/* Get copy of input image ROI */

virtualvoidCopyOf(CvvImage& image,intdesired_color=-1); virtualvoidCopyOf(IplImage*img,intdesired_color=-1);

IplImage*GetImage(){returnm_img;};

virtualvoid Destroy(void);

/* width and height of ROI */

int

Width(){return!m_img?0:!m_img->roi?m_img->width :m_img->roi->width;}; int

Height(){return!m_img?0:!m_img->roi?m_img->height :m_img->roi->height;};

intBpp(){returnm_img?(m_img->depth &255)*m_img->nChannels:0;};

virtualvoid Fill(int color );

/* draw to highgui window */

virtualvoid Show(constchar* window );

#ifdef WIN32

/* draw part of image to the specified DC */

virtualvoid Show( HDC dc,int x,int y,int width,int height, intfrom_x=0,intfrom_y=0);

/* draw the current image ROI to the specified rectangle of the destination DC */

virtualvoidDrawToHDC( HDC hDCDst, RECT*pDstRect); #endif

protected:

IplImage*m_img; };

有了上面对CvvImage类的介绍,可以很容易的在Windows窗口中显示图像了,下面是在MFC的CView窗口中

中显示IplImage图像的函数代码

void CMyView::ShowIplImage(IplImage* img) {

CDC* pDC = GetDC();

HDC hDC= pDC->GetSafeHdc(); CRectrect;

rect.SetRect(0 , 0 , img->width , img->height); CvvImagecimg;

cimg.CopyOf(img);

cimg.DrawToHDC(hDC,&rect); ReleaseDC(pDC); }

/*在对话框Picture控件上显示IplImage图像

iplimg是待显示的图像,ID是picture控件的ID */

void Cdialog_iplImageDlg::DrawPicToHDC(IplImage* iplimg , UINT ID) {

CDC *pDC = GetDlgItem(ID)->GetDC(); HDC hDC= pDC->GetSafeHdc(); CRectrect;

GetDlgItem(ID)->GetClientRect(&rect); CvvImagecimg;

cimg.CopyOf(iplimg);

cimg.DrawToHDC(hDC,&rect); ReleaseDC(pDC); }

本文来源:https://www.bwwdw.com/article/g6jw.html

Top