what is equivalent to openCv function:
IplImage* img = cvCreateImage(cvSize(picture->Width,picture->Height),IPL_DEPTH_32F,1);
How it would be in EmguCV?
how to create image
Re: how to create image
Code: Select all
Image<Gray, float>^ img = gcnew Image<Gray, float>(picture->Width, picture->Height);