Home | History | Annotate | Download | only in android

Lines Matching refs:m32

32         Mat m32 = new Mat();
33 Utils.bitmapToMat(bmp32, m32);
35 assertTrue(m16.rows() == m32.rows() && m16.cols() == m32.cols() && m16.type() == m32.type());
37 double maxDiff = Core.norm(m16, m32, Core.NORM_INF);
64 Mat m32 = new Mat(imgBGR.rows(), imgBGR.cols(), CvType.CV_8UC4);
85 bmp32.eraseColor(Color.WHITE); m32.setTo(s255);
86 Utils.matToBitmap(imgRGBA, bmp32); Utils.bitmapToMat(bmp32, m32);
87 maxDiff = Core.norm(imgRGBA, m32, Core.NORM_INF);
103 bmp32.eraseColor(Color.WHITE); m32.setTo(s255);
104 Utils.matToBitmap(imgRGB, bmp32); Utils.bitmapToMat(bmp32, m32);
105 maxDiff = Core.norm(imgRGBA, m32, Core.NORM_INF);
123 bmp32.eraseColor(Color.WHITE); m32.setTo(s255);
124 Utils.matToBitmap(imgGray, bmp32); Utils.bitmapToMat(bmp32, m32);
126 Core.extractChannel(m32, tmp, 0);