Searched refs:iplimg (Results 1 - 2 of 2) sorted by relevance

/external/opencv3/samples/cpp/
H A Dimage.cpp34 Ptr<IplImage> iplimg(cvLoadImage(imagename)); // Ptr<T> is safe ref-counting pointer class
35 if(!iplimg)
40 Mat img = cv::cvarrToMat(iplimg); // cv::Mat replaces the CvMat and IplImage, but it's easy to convert
120 // this is to demonstrate that img and iplimg really share the data - the result of the above
121 // processing is stored in img and thus in iplimg too.
122 cvShowImage("image with grain", iplimg);
/external/opencv3/modules/core/src/
H A Dmatrix.cpp854 const IplImage* iplimg = (const IplImage*)arr; local
855 if( coiMode == 0 && iplimg->roi && iplimg->roi->coi > 0 )
857 return iplImageToMat(iplimg, copyData);

Completed in 173 milliseconds