HomeSort by relevance Sort by last modified time
    Searched defs:imgGray (Results 1 - 4 of 4) sorted by null

  /external/opencv3/samples/cpp/
watershed.cpp 52 Mat img0 = imread(filename, 1), imgGray;
64 cvtColor(markerMask, imgGray, COLOR_GRAY2BGR);
132 wshed = wshed*0.5 + imgGray*0.5;
detect_mser.cpp 218 Mat imgGray;
220 cvtColor(img, imgGray, COLOR_BGR2GRAY);
222 imgGray = img;
234 vertex.at< Vec3f >(0, nbPix) = Vec3f(float(2 * (x - 0.5)), float(2 * (0.5 - y)), float(imgGray.at<uchar>(i, j) / 512.0));
  /external/opencv3/modules/java/android_test/src/org/opencv/test/android/
UtilsTest.java 111 Mat imgGray = new Mat();
112 Imgproc.cvtColor(imgBGR, imgGray, Imgproc.COLOR_BGR2GRAY);
113 assertTrue(!imgGray.empty() && imgGray.channels() == 1);
117 Utils.matToBitmap(imgGray, bmp16); Utils.bitmapToMat(bmp16, m16);
119 maxDiff = Core.norm(imgGray, tmp, Core.NORM_INF);
124 Utils.matToBitmap(imgGray, bmp32); Utils.bitmapToMat(bmp32, m32);
127 maxDiff = Core.norm(imgGray, tmp, Core.NORM_INF);
  /external/opencv/cvaux/src/
cvvecfacetracking.cpp 67 void ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, float &step, float& power, int iHistMin /*= HIST_MIN*/);
118 IplImage* imgGray;
129 imgGray = NULL;
134 if (NULL != imgGray)
135 delete imgGray;
141 int Init(CvRect* pRects, IplImage* imgGray)
150 imgGray = cvCreateImage(cvSize(imgGray->width, imgGray->height), 8, 1);
151 imgThresh = cvCreateImage(cvSize(imgGray->width, imgGray->height), 8, 1)
    [all...]

Completed in 492 milliseconds