HomeSort by relevance Sort by last modified time
    Searched refs:iplimg (Results 1 - 2 of 2) sorted by null

  /external/opencv3/samples/cpp/
image.cpp 34 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/
matrix.cpp 854 const IplImage* iplimg = (const IplImage*)arr; local
855 if( coiMode == 0 && iplimg->roi && iplimg->roi->coi > 0 )
857 return iplImageToMat(iplimg, copyData);
    [all...]

Completed in 87 milliseconds