Ask Your Question

Andy's profile - activity

2020-01-27 09:52:36 -0600 received badge  Popular Question (source)
2012-10-30 06:33:57 -0600 answered a question Problem: draw a image using OpenCV 2.3.1 in MFC application

I find a way to solve it using GDI+. Mat m_src; Here is the implement: Gdiplus::Bitmap bitmap(m_src.cols, m_src.rows, m_src.cols * m_src.channels(),
PixelFormat24bppRGB, (BYTE*)m_src.data); Gdiplus::Graphics graphics(pDC->GetSafeHdc()); graphics.DrawImage(&bitmap, 0, 0);

2012-10-27 21:49:28 -0600 received badge  Editor (source)
2012-10-27 21:48:07 -0600 asked a question Problem: draw a image using OpenCV 2.3.1 in MFC application

Hi ,I'm new to OpenCV. Is there other methods to draw a image in MFC application using OpenCV 2.3.1? CvvImage was a highgui class that was removed from OpenCV from ver. 2.2 ,so I don't want to use it.It will be better if you mail me a simple project. Thank You! My Email: [email protected]