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

转自 :http://blog.sina.com.cn/s/blog_532f5c210100gxrw.html
 
在MFC的View类中:
void   CMyView : : ShowIplImage(IplImage *   img)
{
      CDC *   pDC   =   GetDC();
    HDC   hDC =   pDC - > GetSafeHdc();   CRect   rect;   rect . SetRect( 0   ,   0   ,   img - > width   ,   img - > height);   CvvImage   cimg;   cimg . CopyOf(img);   cimg . DrawToHDC(hDC, & rect);   ReleaseDC(pDC);  
}
在Dialog中:
 
void   Cdialog_iplImageDlg : : DrawPicToHDC(IplImage *   iplimg   ,   UINT   ID)
{
    CDC   * pDC   =   GetDlgItem(ID) - > GetDC();
    HDC   hDC =   pDC - > GetSafeHdc();
    CRect   rect;
    GetDlgItem(ID) - > GetClientRect( & rect);
    CvvImage   cimg;  
    cimg . CopyOf(iplimg);
    cimg . DrawToHDC(hDC, & rect);
10     ReleaseDC(pDC);
11 }

 

你可能感兴趣的:(c,mfc,dialog)