平常使用Open CV时总是跳出一个个窗口,很难将项目进行系统集成,特别是在MFC等Windows环境中加载显示Open CV中的IplImage图像; 使用Open CVhighgui.h 中定义的CvvImage类,可以很好的实现Open CV和Windows MFC显示接口;先介绍一下CvvImage类: 由于CvvImage是在 highgui.h 头文件中声明的,因此如果您的程序中需要使用,则必须在开头包含此头文件 #include <highgui.h> CvvImage对应CImage宏: #define CImage CvvImage 注意事项:
CvvImage::Createbool CvvImage::Create(int w, int h, int bpp, int origin); 创建一个图像。 成功返回true, 失败返回false。 w 图像宽 h 图像高 bpp 每个像素的bit数, 值等于像素深度乘以通道数 origin 0 - 顶—左结构, 1 - 底—左结构 (Windows bitmaps 风格) 例:// 创建一个400行600列的, IPL_DEPTH_8U类型的3通道图像, 顶—左结构 CvvImage img; bool flag = img.Create(600, 400, IPL_DEPTH_8U*3, 0); if(!flag) printf("创建图像失败!");
CvvImage::CopyOf void CvvImage::CopyOf(CvvImage& img, int desired_color); 从img复制图像到当前的对象中。 img 要复制的图像。 desired_color 为复制后图像的通道数, 复制后图像的像素深度为8bit。 例:// 读一个图像,然后复制为1个3通道的彩色图像 img1.Load("example.tiff"); img2.CopyOf(img1, 3); CvvImage::Loadbool CvvImage::Load(const char* filename, int desired_color); 装载一个图像。
CvvImage::LoadRectbool CvvImage::LoadRect(const char* filename, int desired_color, CvRect rect); 从图像读出一个区域。
CvvImage::Savebool CvvImage::Save(const char* filename);保存图像。 和cvSaveImage相似。 CvvImage::Showvoid CvvImage::Show(const char* window);显示一个图像。 和cvShowImage相似。 CvvImage::Showvoid CvvImage::Show(HDC dc, int x, int y, int w, int h, int from_x, int from_y); 绘制图像的部分到DC。 图像没有缩放。此函数仅在Windows下有效。
CvvImage::DrawToHDCvoid CImage::DrawToHDC(HDC hDCDst, RECT* pDstRect); 绘制图像的ROI区域到DC的pDstRect,如果图像大小和pDstRect不一致,图像会拉伸/压缩。此函数仅在Windows下有效。
例: CvvImage img; img.Load("example.tiff"); CRect rect; rect.left = 100; rect.top = 200; rect.right = rect.left + 600; rect.bottom = rect.top + 400; img.DrawToHDC(hDC, &rect);
CvvImage::Fillvoid CvvImage::Fill(int color); 以color颜色填充图像。 CvvImage类定义 class CV_EXPORTS CvvImage
{public:
CvvImage();
virtual ~CvvImage();
virtual bool Create( int width,int height,int bits_per_pixel,int image_origin=0 ); virtual bool Load( const char* filename, int desired_color = 1 ); virtual bool LoadRect( const char* filename,int desired_color, CvRect r );
#ifdef WIN32
virtual bool LoadRect( const char* filename,int desired_color, RECT r ) { return LoadRect( filename, desired_color,cvRect( r.left, r.top, r.right - r.left, r.bottom - r.top )); } #endif
virtual bool Save( const char* filename );
virtual void CopyOf( CvvImage& image, int desired_color = -1 );
virtual void CopyOf( IplImage* img, int desired_color = -1 );
IplImage* GetImage() { return m_img; };
virtual void Destroy(void);
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;};
int Bpp() { return m_img ? (m_img->depth & 255)*m_img->nChannels : 0; };
virtual void Fill( int color );
virtual void Show( const char* window ); #ifdef WIN32
virtual void Show(HDC dc,int x,int y,int width,int height,int from_x = 0,int from_y = 0 ); virtual void DrawToHDC( HDC hDCDst, RECT* pDstRect ); #endif
protected:
IplImage* m_img; };
有了上面对CvvImage类的介绍,可以很容易的在Windows窗口中显示图像了,下面是在MFC的CView窗口中
中显示IplImage图像的函数代码
void CMyView::ShowIplImage(IplImage* img) { CDC* pDC = GetDC(); }
void Cdialog_iplImageDlg::DrawPicToHDC(IplImage* iplimg , UINT ID)
cimg.CopyOf(iplimg);
|