CvvImage on opencv 2.4 [closed]
H Hello,
I have to update a code that uses opencv 1.1 on Visual Studio 2008 using opencv 2.4 in visual studio 2010. While compiling the class CvvImage is not found as it has been cut off in the most recent versions of opencv. This was the operation the code did using CvvImage
CvvImage cvImage;
cvImage.CopyOf(Img);
cvImage.Show(memDC.m_hDC, 0, 0, Img->width, Img->height, 0, 0);
cvImage.Destroy()
Can anyone suggest me a way to implement the same code with the newer version of opencv?
Do you want to draw Img on MFC interface?
Yes! Img is converted in bitmap to make it compatible with MFC