/external/opencv3/modules/core/misc/java/test/ |
D | MatTest.java | 19 Mat roi = gray0.submat(3, 5, 7, 10); in testAdjustROI() 34 assertSizeEquals(gray0.size(), size, EPS); in testAdjustROI() 38 gray0.assignTo(dst); in testAssignToMat() 40 assertMatEqual(gray0, dst); in testAssignToMat() 54 assertEquals(1, gray0.channels()); in testChannels() 95 dst = gray0.clone(); in testClone() 96 assertMatEqual(gray0, dst); in testClone() 97 assertFalse(gray0.getNativeObjAddr() == dst.getNativeObjAddr()); in testClone() 98 assertFalse(gray0.dataAddr() == dst.dataAddr()); in testClone() 102 Mat col = gray0.col(0); in testCol() [all …]
|
D | CoreTest.java | 39 Core.add(gray0, gray1, dst, gray1, CvType.CV_32F); in testAddMatMatMatMatInt() 73 assertMatEqual(gray0, dst); in testBitwise_notMatMat() 77 Core.bitwise_not(gray0, dst, gray1); in testBitwise_notMatMatMat() 214 Core.compare(gray0, gray0, dst, Core.CMP_EQ); in testCompare() 218 Core.compare(gray0, gray1, dst, Core.CMP_EQ); in testCompare() 220 assertMatEqual(dst, gray0); in testCompare() 224 Core.compare(gray0, grayRnd, dst, Core.CMP_GE); in testCompare() 247 Core.convertScaleAbs(gray0, dst); in testConvertScaleAbsMatMat() 249 assertMatEqual(gray0, dst, EPS); in testConvertScaleAbsMatMat() 263 assertEquals(0, Core.countNonZero(gray0)); in testCountNonZero() [all …]
|
/external/opencv3/modules/imgproc/misc/java/test/ |
D | ImgprocTest.java | 186 Imgproc.blur(gray0, dst, size); in testBlurMatMatSize() 187 assertMatEqual(gray0, dst); in testBlurMatMatSize() 195 Imgproc.blur(gray0, dst, size, anchorPoint); in testBlurMatMatSizePoint() 196 assertMatEqual(gray0, dst); in testBlurMatMatSizePoint() 201 Imgproc.blur(gray0, dst, size, anchorPoint, Core.BORDER_REFLECT); in testBlurMatMatSizePointInt() 202 assertMatEqual(gray0, dst); in testBlurMatMatSizePointInt() 219 Imgproc.boxFilter(gray0, dst, 8, size); in testBoxFilterMatMatIntSize() 220 assertMatEqual(gray0, dst); in testBoxFilterMatMatIntSize() 344 assertMatEqual(gray0, dst); in testCannyMatMatDoubleDouble() 349 Imgproc.Canny(gray0, dst, 5, 10, 5, true); in testCannyMatMatDoubleDoubleIntBoolean() [all …]
|
/external/opencv3/samples/cpp/ |
D | squares.cpp | 52 Mat pyr, timg, gray0(image.size(), CV_8U), gray; in findSquares() local 63 mixChannels(&timg, 1, &gray0, 1, ch, 1); in findSquares() 74 Canny(gray0, gray, 0, thresh, 5); in findSquares() 83 gray = gray0 >= (l+1)*255/N; in findSquares()
|
/external/opencv3/samples/tapi/ |
D | squares.cpp | 38 UMat pyr, timg, gray0(image.size(), CV_8U), gray; in findSquares() local 49 mixChannels(timg, gray0, ch, 1); in findSquares() 60 Canny(gray0, gray, 0, thresh, 5); in findSquares() 69 cv::threshold(gray0, gray, (l+1)*255/N, 255, THRESH_BINARY); in findSquares()
|
/external/opencv3/modules/photo/misc/java/test/ |
D | PhotoTest.java | 15 Imgproc.circle(gray0, p, 2, colorWhite, Core.FILLED); in testInpaint() 17 Photo.inpaint(gray255, gray0, dst, 3, Photo.INPAINT_TELEA); in testInpaint()
|
/external/opencv3/modules/imgcodecs/test/ |
D | test_drawing.cpp | 439 Mat gray0(10,10,CV_8U, Scalar(0)); in run() local 440 fillConvexPoly(gray0, line1, Scalar(255), 8, 0); in run() 441 int nz1 = countNonZero(gray0); in run() 443 fillConvexPoly(gray0, line2, Scalar(0), 8, 1); in run() 444 int nz2 = countNonZero(gray0)/255; in run()
|
/external/opencv3/modules/java/android_test/src/org/opencv/test/ |
D | OpenCVTestCase.java | 58 protected Mat gray0; field in OpenCVTestCase 104 gray0 = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(0)); in setUp() 149 gray0.release(); in tearDown()
|
/external/opencv3/samples/python2/ |
D | lk_homography.py | 97 self.gray0 = frame_gray
|
/external/opencv3/modules/java/pure_test/src/org/opencv/test/ |
D | OpenCVTestCase.java | 60 protected Mat gray0; field in OpenCVTestCase 134 gray0 = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(0)); in setUp() 179 gray0.release(); in tearDown()
|