mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2199 lines
72 KiB
2199 lines
72 KiB
14 years ago
|
package org.opencv.test.imgproc;
|
||
14 years ago
|
|
||
14 years ago
|
import java.util.ArrayList;
|
||
13 years ago
|
import java.util.Arrays;
|
||
14 years ago
|
import java.util.List;
|
||
|
|
||
14 years ago
|
import org.opencv.core.Core;
|
||
14 years ago
|
import org.opencv.core.CvType;
|
||
|
import org.opencv.core.Mat;
|
||
13 years ago
|
import org.opencv.core.MatOfFloat;
|
||
|
import org.opencv.core.MatOfInt;
|
||
13 years ago
|
import org.opencv.core.MatOfInt4;
|
||
13 years ago
|
import org.opencv.core.MatOfPoint;
|
||
|
import org.opencv.core.MatOfPoint2f;
|
||
14 years ago
|
import org.opencv.core.Point;
|
||
|
import org.opencv.core.Rect;
|
||
|
import org.opencv.core.RotatedRect;
|
||
14 years ago
|
import org.opencv.core.Scalar;
|
||
|
import org.opencv.core.Size;
|
||
14 years ago
|
import org.opencv.core.TermCriteria;
|
||
14 years ago
|
import org.opencv.imgproc.Imgproc;
|
||
14 years ago
|
import org.opencv.test.OpenCVTestCase;
|
||
14 years ago
|
|
||
13 years ago
|
public class ImgprocTest extends OpenCVTestCase {
|
||
13 years ago
|
|
||
13 years ago
|
Point anchorPoint;
|
||
14 years ago
|
private int imgprocSz;
|
||
|
Size size;
|
||
|
|
||
|
@Override
|
||
|
protected void setUp() throws Exception {
|
||
|
super.setUp();
|
||
|
|
||
|
imgprocSz = 2;
|
||
|
anchorPoint = new Point(2, 2);
|
||
|
size = new Size(3, 3);
|
||
|
}
|
||
|
|
||
|
public void testAccumulateMatMat() {
|
||
13 years ago
|
Mat src = getMat(CvType.CV_64F, 2);
|
||
|
Mat dst = getMat(CvType.CV_64F, 0);
|
||
|
Mat dst2 = src.clone();
|
||
|
|
||
|
Imgproc.accumulate(src, dst);
|
||
|
Imgproc.accumulate(src, dst2);
|
||
14 years ago
|
|
||
13 years ago
|
assertMatEqual(src, dst, EPS);
|
||
|
assertMatEqual(getMat(CvType.CV_64F, 4), dst2, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testAccumulateMatMatMat() {
|
||
13 years ago
|
Mat src = getMat(CvType.CV_64F, 2);
|
||
|
Mat mask = makeMask(getMat(CvType.CV_8U, 1));
|
||
|
Mat dst = getMat(CvType.CV_64F, 0);
|
||
|
Mat dst2 = src.clone();
|
||
|
|
||
|
Imgproc.accumulate(src, dst, mask);
|
||
|
Imgproc.accumulate(src, dst2, mask);
|
||
|
|
||
|
assertMatEqual(makeMask(getMat(CvType.CV_64F, 2)), dst, EPS);
|
||
|
assertMatEqual(makeMask(getMat(CvType.CV_64F, 4), 2), dst2, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testAccumulateProductMatMatMat() {
|
||
13 years ago
|
Mat src = getMat(CvType.CV_64F, 2);
|
||
|
Mat dst = getMat(CvType.CV_64F, 0);
|
||
|
Mat dst2 = src.clone();
|
||
14 years ago
|
|
||
13 years ago
|
Imgproc.accumulateProduct(src, src, dst);
|
||
|
Imgproc.accumulateProduct(src, dst, dst2);
|
||
14 years ago
|
|
||
13 years ago
|
assertMatEqual(getMat(CvType.CV_64F, 4), dst, EPS);
|
||
|
assertMatEqual(getMat(CvType.CV_64F, 10), dst2, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testAccumulateProductMatMatMatMat() {
|
||
13 years ago
|
Mat src = getMat(CvType.CV_64F, 2);
|
||
|
Mat mask = makeMask(getMat(CvType.CV_8U, 1));
|
||
|
Mat dst = getMat(CvType.CV_64F, 0);
|
||
|
Mat dst2 = src.clone();
|
||
14 years ago
|
|
||
13 years ago
|
Imgproc.accumulateProduct(src, src, dst, mask);
|
||
|
Imgproc.accumulateProduct(src, dst, dst2, mask);
|
||
14 years ago
|
|
||
13 years ago
|
assertMatEqual(makeMask(getMat(CvType.CV_64F, 4)), dst, EPS);
|
||
|
assertMatEqual(makeMask(getMat(CvType.CV_64F, 10), 2), dst2, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testAccumulateSquareMatMat() {
|
||
13 years ago
|
Mat src = getMat(CvType.CV_64F, 2);
|
||
|
Mat dst = getMat(CvType.CV_64F, 0);
|
||
|
Mat dst2 = src.clone();
|
||
14 years ago
|
|
||
13 years ago
|
Imgproc.accumulateSquare(src, dst);
|
||
|
Imgproc.accumulateSquare(src, dst2);
|
||
|
|
||
|
assertMatEqual(getMat(CvType.CV_64F, 4), dst, EPS);
|
||
|
assertMatEqual(getMat(CvType.CV_64F, 6), dst2, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testAccumulateSquareMatMatMat() {
|
||
13 years ago
|
Mat src = getMat(CvType.CV_64F, 2);
|
||
|
Mat mask = makeMask(getMat(CvType.CV_8U, 1));
|
||
|
Mat dst = getMat(CvType.CV_64F, 0);
|
||
|
Mat dst2 = src.clone();
|
||
|
|
||
|
Imgproc.accumulateSquare(src, dst, mask);
|
||
|
Imgproc.accumulateSquare(src, dst2, mask);
|
||
14 years ago
|
|
||
13 years ago
|
assertMatEqual(makeMask(getMat(CvType.CV_64F, 4)), dst, EPS);
|
||
|
assertMatEqual(makeMask(getMat(CvType.CV_64F, 6), 2), dst2, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testAccumulateWeightedMatMatDouble() {
|
||
13 years ago
|
Mat src = getMat(CvType.CV_64F, 2);
|
||
|
Mat dst = getMat(CvType.CV_64F, 4);
|
||
|
Mat dst2 = src.clone();
|
||
|
|
||
|
Imgproc.accumulateWeighted(src, dst, 0.5);
|
||
|
Imgproc.accumulateWeighted(src, dst2, 2);
|
||
14 years ago
|
|
||
13 years ago
|
assertMatEqual(getMat(CvType.CV_64F, 3), dst, EPS);
|
||
|
assertMatEqual(getMat(CvType.CV_64F, 2), dst2, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testAccumulateWeightedMatMatDoubleMat() {
|
||
13 years ago
|
Mat src = getMat(CvType.CV_64F, 2);
|
||
|
Mat mask = makeMask(getMat(CvType.CV_8U, 1));
|
||
|
Mat dst = getMat(CvType.CV_64F, 4);
|
||
|
Mat dst2 = src.clone();
|
||
|
|
||
|
Imgproc.accumulateWeighted(src, dst, 0.5, mask);
|
||
|
Imgproc.accumulateWeighted(src, dst2, 2, mask);
|
||
|
|
||
|
assertMatEqual(makeMask(getMat(CvType.CV_64F, 3), 4), dst, EPS);
|
||
|
assertMatEqual(getMat(CvType.CV_64F, 2), dst2, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testAdaptiveThreshold() {
|
||
13 years ago
|
Mat src = makeMask(getMat(CvType.CV_8U, 50), 20);
|
||
|
Mat dst = new Mat();
|
||
|
|
||
|
Imgproc.adaptiveThreshold(src, dst, 1, Imgproc.ADAPTIVE_THRESH_MEAN_C, Imgproc.THRESH_BINARY, 3, 0);
|
||
|
|
||
|
assertEquals(src.rows(), Core.countNonZero(dst));
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testApproxPolyDP() {
|
||
12 years ago
|
MatOfPoint2f curve = new MatOfPoint2f(new Point(1, 3), new Point(2, 4), new Point(3, 5), new Point(4, 4), new Point(5, 3));
|
||
|
|
||
|
MatOfPoint2f approxCurve = new MatOfPoint2f();
|
||
13 years ago
|
|
||
|
Imgproc.approxPolyDP(curve, approxCurve, EPS, true);
|
||
|
|
||
|
List<Point> approxCurveGold = new ArrayList<Point>(3);
|
||
|
approxCurveGold.add(new Point(1, 3));
|
||
|
approxCurveGold.add(new Point(3, 5));
|
||
|
approxCurveGold.add(new Point(5, 3));
|
||
|
|
||
13 years ago
|
assertListPointEquals(approxCurve.toList(), approxCurveGold, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testArcLength() {
|
||
13 years ago
|
MatOfPoint2f curve = new MatOfPoint2f(new Point(1, 3), new Point(2, 4), new Point(3, 5), new Point(4, 4), new Point(5, 3));
|
||
14 years ago
|
|
||
|
double arcLength = Imgproc.arcLength(curve, false);
|
||
13 years ago
|
|
||
10 years ago
|
assertEquals(5.656854249, arcLength, 0.000001);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testBilateralFilterMatMatIntDoubleDouble() {
|
||
13 years ago
|
Imgproc.bilateralFilter(gray255, dst, 5, 10, 5);
|
||
|
|
||
14 years ago
|
assertMatEqual(gray255, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testBilateralFilterMatMatIntDoubleDoubleInt() {
|
||
12 years ago
|
Imgproc.bilateralFilter(gray255, dst, 5, 10, 5, Core.BORDER_REFLECT);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(gray255, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testBlurMatMatSize() {
|
||
|
Imgproc.blur(gray0, dst, size);
|
||
|
assertMatEqual(gray0, dst);
|
||
|
|
||
|
Imgproc.blur(gray255, dst, size);
|
||
|
assertMatEqual(gray255, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testBlurMatMatSizePoint() {
|
||
|
Imgproc.blur(gray0, dst, size, anchorPoint);
|
||
|
assertMatEqual(gray0, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testBlurMatMatSizePointInt() {
|
||
12 years ago
|
Imgproc.blur(gray0, dst, size, anchorPoint, Core.BORDER_REFLECT);
|
||
14 years ago
|
assertMatEqual(gray0, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testBoundingRect() {
|
||
13 years ago
|
MatOfPoint points = new MatOfPoint(new Point(0, 0), new Point(0, 4), new Point(4, 0), new Point(4, 4));
|
||
14 years ago
|
Point p1 = new Point(1, 1);
|
||
|
Point p2 = new Point(-5, -2);
|
||
|
|
||
|
Rect bbox = Imgproc.boundingRect(points);
|
||
13 years ago
|
|
||
14 years ago
|
assertTrue(bbox.contains(p1));
|
||
|
assertFalse(bbox.contains(p2));
|
||
|
}
|
||
|
|
||
|
public void testBoxFilterMatMatIntSize() {
|
||
|
Size size = new Size(3, 3);
|
||
|
Imgproc.boxFilter(gray0, dst, 8, size);
|
||
|
assertMatEqual(gray0, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testBoxFilterMatMatIntSizePointBoolean() {
|
||
|
Imgproc.boxFilter(gray255, dst, 8, size, anchorPoint, false);
|
||
|
assertMatEqual(gray255, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testBoxFilterMatMatIntSizePointBooleanInt() {
|
||
12 years ago
|
Imgproc.boxFilter(gray255, dst, 8, size, anchorPoint, false, Core.BORDER_REFLECT);
|
||
14 years ago
|
assertMatEqual(gray255, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCalcBackProject() {
|
||
13 years ago
|
List<Mat> images = Arrays.asList(grayChess);
|
||
13 years ago
|
MatOfInt channels = new MatOfInt(0);
|
||
|
MatOfInt histSize = new MatOfInt(10);
|
||
|
MatOfFloat ranges = new MatOfFloat(0f, 256f);
|
||
14 years ago
|
|
||
|
Mat hist = new Mat();
|
||
|
Imgproc.calcHist(images, channels, new Mat(), hist, histSize, ranges);
|
||
|
Core.normalize(hist, hist);
|
||
|
|
||
|
Imgproc.calcBackProject(images, channels, hist, dst, ranges, 255);
|
||
13 years ago
|
|
||
|
assertEquals(grayChess.size(), dst.size());
|
||
14 years ago
|
assertEquals(grayChess.depth(), dst.depth());
|
||
13 years ago
|
assertFalse(0 == Core.countNonZero(dst));
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCalcHistListOfMatListOfIntegerMatMatListOfIntegerListOfFloat() {
|
||
13 years ago
|
List<Mat> images = Arrays.asList(gray128);
|
||
13 years ago
|
MatOfInt channels = new MatOfInt(0);
|
||
|
MatOfInt histSize = new MatOfInt(10);
|
||
|
MatOfFloat ranges = new MatOfFloat(0f, 256f);
|
||
14 years ago
|
Mat hist = new Mat();
|
||
13 years ago
|
|
||
14 years ago
|
Imgproc.calcHist(images, channels, new Mat(), hist, histSize, ranges);
|
||
13 years ago
|
|
||
|
truth = new Mat(10, 1, CvType.CV_32F, Scalar.all(0)) {
|
||
|
{
|
||
|
put(5, 0, 100);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, hist, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
13 years ago
|
public void testCalcHistListOfMatListOfIntegerMatMatListOfIntegerListOfFloat2D() {
|
||
13 years ago
|
List<Mat> images = Arrays.asList(gray255, gray128);
|
||
13 years ago
|
MatOfInt channels = new MatOfInt(0, 1);
|
||
|
MatOfInt histSize = new MatOfInt(10, 10);
|
||
|
MatOfFloat ranges = new MatOfFloat(0f, 256f, 0f, 256f);
|
||
14 years ago
|
Mat hist = new Mat();
|
||
13 years ago
|
|
||
14 years ago
|
Imgproc.calcHist(images, channels, new Mat(), hist, histSize, ranges);
|
||
13 years ago
|
|
||
|
truth = new Mat(10, 10, CvType.CV_32F, Scalar.all(0)) {
|
||
|
{
|
||
|
put(9, 5, 100);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, hist, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
13 years ago
|
public void testCalcHistListOfMatListOfIntegerMatMatListOfIntegerListOfFloat3D() {
|
||
|
List<Mat> images = Arrays.asList(rgbLena);
|
||
12 years ago
|
|
||
13 years ago
|
Mat hist3D = new Mat();
|
||
|
List<Mat> histList = Arrays.asList( new Mat[] {new Mat(), new Mat(), new Mat()} );
|
||
12 years ago
|
|
||
13 years ago
|
MatOfInt histSize = new MatOfInt(10);
|
||
|
MatOfFloat ranges = new MatOfFloat(0f, 256f);
|
||
12 years ago
|
|
||
13 years ago
|
for(int i=0; i<rgbLena.channels(); i++)
|
||
|
{
|
||
|
Imgproc.calcHist(images, new MatOfInt(i), new Mat(), histList.get(i), histSize, ranges);
|
||
|
|
||
|
assertEquals(10, histList.get(i).checkVector(1));
|
||
|
}
|
||
12 years ago
|
|
||
13 years ago
|
Core.merge(histList, hist3D);
|
||
|
|
||
|
assertEquals(CvType.CV_32FC3, hist3D.type());
|
||
|
assertEquals(10, hist3D.checkVector(3));
|
||
12 years ago
|
|
||
13 years ago
|
Mat truth = new Mat(10, 1, CvType.CV_32FC3);
|
||
|
truth.put(0, 0,
|
||
12 years ago
|
0, 24870, 0,
|
||
|
1863, 31926, 1,
|
||
|
56682, 37677, 2260,
|
||
|
77278, 44751, 32436,
|
||
|
69397, 41343, 18526,
|
||
|
27180, 40407, 18658,
|
||
|
21101, 15993, 32042,
|
||
|
8343, 18585, 47786,
|
||
|
300, 6567, 80988,
|
||
|
0, 25, 29447
|
||
|
);
|
||
|
|
||
13 years ago
|
assertMatEqual(truth, hist3D, EPS);
|
||
|
}
|
||
|
|
||
14 years ago
|
public void testCalcHistListOfMatListOfIntegerMatMatListOfIntegerListOfFloatBoolean() {
|
||
13 years ago
|
List<Mat> images = Arrays.asList(gray255, gray128);
|
||
13 years ago
|
MatOfInt channels = new MatOfInt(0, 1);
|
||
|
MatOfInt histSize = new MatOfInt(10, 10);
|
||
|
MatOfFloat ranges = new MatOfFloat(0f, 256f, 0f, 256f);
|
||
14 years ago
|
Mat hist = new Mat();
|
||
|
|
||
13 years ago
|
Imgproc.calcHist(images, channels, new Mat(), hist, histSize, ranges, true);
|
||
13 years ago
|
|
||
|
truth = new Mat(10, 10, CvType.CV_32F, Scalar.all(0)) {
|
||
|
{
|
||
|
put(9, 5, 100);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, hist, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCannyMatMatDoubleDouble() {
|
||
13 years ago
|
Imgproc.Canny(gray255, dst, 5, 10);
|
||
14 years ago
|
assertMatEqual(gray0, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCannyMatMatDoubleDoubleIntBoolean() {
|
||
13 years ago
|
Imgproc.Canny(gray0, dst, 5, 10, 5, true);
|
||
14 years ago
|
assertMatEqual(gray0, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCompareHist() {
|
||
|
Mat H1 = new Mat(3, 1, CvType.CV_32F);
|
||
|
Mat H2 = new Mat(3, 1, CvType.CV_32F);
|
||
|
H1.put(0, 0, 1, 2, 3);
|
||
|
H2.put(0, 0, 4, 5, 6);
|
||
|
|
||
13 years ago
|
double distance = Imgproc.compareHist(H1, H2, Imgproc.CV_COMP_CORREL);
|
||
|
|
||
|
assertEquals(1., distance);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testContourAreaMat() {
|
||
|
Mat contour = new Mat(1, 4, CvType.CV_32FC2);
|
||
13 years ago
|
contour.put(0, 0, 0, 0, 10, 0, 10, 10, 5, 4);
|
||
14 years ago
|
|
||
|
double area = Imgproc.contourArea(contour);
|
||
13 years ago
|
|
||
|
assertEquals(45., area);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testContourAreaMatBoolean() {
|
||
|
Mat contour = new Mat(1, 4, CvType.CV_32FC2);
|
||
13 years ago
|
contour.put(0, 0, 0, 0, 10, 0, 10, 10, 5, 4);
|
||
14 years ago
|
|
||
|
double area = Imgproc.contourArea(contour, true);
|
||
13 years ago
|
|
||
|
assertEquals(45., area);
|
||
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testConvertMapsMatMatMatMatInt() {
|
||
13 years ago
|
Mat map1 = new Mat(1, 4, CvType.CV_32FC1, new Scalar(1));
|
||
|
Mat map2 = new Mat(1, 4, CvType.CV_32FC1, new Scalar(2));
|
||
14 years ago
|
Mat dstmap1 = new Mat(1, 4, CvType.CV_16SC2);
|
||
|
Mat dstmap2 = new Mat(1, 4, CvType.CV_16UC1);
|
||
|
|
||
14 years ago
|
Imgproc.convertMaps(map1, map2, dstmap1, dstmap2, CvType.CV_16SC2);
|
||
13 years ago
|
|
||
14 years ago
|
Mat truthMap1 = new Mat(1, 4, CvType.CV_16SC2);
|
||
|
truthMap1.put(0, 0, 1, 2, 1, 2, 1, 2, 1, 2);
|
||
|
assertMatEqual(truthMap1, dstmap1);
|
||
13 years ago
|
Mat truthMap2 = new Mat(1, 4, CvType.CV_16UC1, new Scalar(0));
|
||
14 years ago
|
assertMatEqual(truthMap2, dstmap2);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testConvertMapsMatMatMatMatIntBoolean() {
|
||
13 years ago
|
Mat map1 = new Mat(1, 3, CvType.CV_32FC1, new Scalar(2));
|
||
|
Mat map2 = new Mat(1, 3, CvType.CV_32FC1, new Scalar(4));
|
||
13 years ago
|
Mat dstmap1 = new Mat(1, 3, CvType.CV_16SC2);
|
||
|
Mat dstmap2 = new Mat(1, 3, CvType.CV_16UC1);
|
||
|
|
||
|
Imgproc.convertMaps(map1, map2, dstmap1, dstmap2, CvType.CV_16SC2, false);
|
||
13 years ago
|
// TODO_: write better test (last param == true)
|
||
|
|
||
13 years ago
|
Mat truthMap1 = new Mat(1, 3, CvType.CV_16SC2);
|
||
|
truthMap1.put(0, 0, 2, 4, 2, 4, 2, 4);
|
||
|
assertMatEqual(truthMap1, dstmap1);
|
||
|
Mat truthMap2 = new Mat(1, 3, CvType.CV_16UC1, new Scalar(0));
|
||
|
assertMatEqual(truthMap2, dstmap2);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testConvexHullMatMat() {
|
||
12 years ago
|
MatOfPoint points = new MatOfPoint(
|
||
|
new Point(20, 0),
|
||
|
new Point(40, 0),
|
||
|
new Point(30, 20),
|
||
|
new Point(0, 20),
|
||
|
new Point(20, 10),
|
||
|
new Point(30, 10)
|
||
|
);
|
||
|
|
||
|
MatOfInt hull = new MatOfInt();
|
||
13 years ago
|
|
||
13 years ago
|
Imgproc.convexHull(points, hull);
|
||
14 years ago
|
|
||
13 years ago
|
MatOfInt expHull = new MatOfInt(
|
||
12 years ago
|
1, 2, 3, 0
|
||
13 years ago
|
);
|
||
|
assertMatEqual(expHull, hull, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testConvexHullMatMatBooleanBoolean() {
|
||
12 years ago
|
MatOfPoint points = new MatOfPoint(
|
||
|
new Point(2, 0),
|
||
|
new Point(4, 0),
|
||
|
new Point(3, 2),
|
||
|
new Point(0, 2),
|
||
|
new Point(2, 1),
|
||
|
new Point(3, 1)
|
||
|
);
|
||
|
|
||
|
MatOfInt hull = new MatOfInt();
|
||
13 years ago
|
|
||
|
Imgproc.convexHull(points, hull, true);
|
||
|
|
||
|
MatOfInt expHull = new MatOfInt(
|
||
12 years ago
|
3, 2, 1, 0
|
||
13 years ago
|
);
|
||
|
assertMatEqual(expHull, hull, EPS);
|
||
|
}
|
||
12 years ago
|
|
||
13 years ago
|
public void testConvexityDefects() {
|
||
12 years ago
|
MatOfPoint points = new MatOfPoint(
|
||
|
new Point(20, 0),
|
||
|
new Point(40, 0),
|
||
|
new Point(30, 20),
|
||
|
new Point(0, 20),
|
||
|
new Point(20, 10),
|
||
|
new Point(30, 10)
|
||
|
);
|
||
13 years ago
|
|
||
|
MatOfInt hull = new MatOfInt();
|
||
|
Imgproc.convexHull(points, hull);
|
||
12 years ago
|
|
||
13 years ago
|
MatOfInt4 convexityDefects = new MatOfInt4();
|
||
|
Imgproc.convexityDefects(points, hull, convexityDefects);
|
||
12 years ago
|
|
||
13 years ago
|
assertMatEqual(new MatOfInt4(3, 0, 5, 3620), convexityDefects);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCornerEigenValsAndVecsMatMatIntInt() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
|
// TODO: write better test
|
||
14 years ago
|
Mat src = new Mat(imgprocSz, imgprocSz, CvType.CV_32FC1);
|
||
|
src.put(0, 0, 1, 2);
|
||
|
src.put(1, 0, 4, 2);
|
||
|
|
||
|
int blockSize = 3;
|
||
|
int ksize = 5;
|
||
|
|
||
|
// TODO: eigen vals and vectors returned = 0 for most src matrices
|
||
|
Imgproc.cornerEigenValsAndVecs(src, dst, blockSize, ksize);
|
||
13 years ago
|
truth = new Mat(imgprocSz, imgprocSz, CvType.CV_32FC(6), new Scalar(0));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCornerEigenValsAndVecsMatMatIntIntInt() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
|
// TODO: write better test
|
||
14 years ago
|
Mat src = new Mat(4, 4, CvType.CV_32FC1, new Scalar(128));
|
||
|
|
||
|
int blockSize = 3;
|
||
|
int ksize = 5;
|
||
|
|
||
|
truth = new Mat(4, 4, CvType.CV_32FC(6), new Scalar(0));
|
||
|
|
||
12 years ago
|
Imgproc.cornerEigenValsAndVecs(src, dst, blockSize, ksize, Core.BORDER_REFLECT);
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCornerHarrisMatMatIntIntDouble() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
|
// TODO: write better test
|
||
|
|
||
14 years ago
|
truth = new Mat(matSize, matSize, CvType.CV_32FC1, new Scalar(0));
|
||
|
int blockSize = 5;
|
||
|
int ksize = 7;
|
||
|
double k = 0.1;
|
||
|
Imgproc.cornerHarris(gray128, dst, blockSize, ksize, k);
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCornerHarrisMatMatIntIntDoubleInt() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
|
// TODO: write better test
|
||
|
|
||
14 years ago
|
truth = new Mat(matSize, matSize, CvType.CV_32FC1, new Scalar(0));
|
||
|
int blockSize = 5;
|
||
|
int ksize = 7;
|
||
|
double k = 0.1;
|
||
12 years ago
|
Imgproc.cornerHarris(gray255, dst, blockSize, ksize, k, Core.BORDER_REFLECT);
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCornerMinEigenValMatMatInt() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
|
// TODO: write better test
|
||
|
|
||
14 years ago
|
Mat src = new Mat(imgprocSz, imgprocSz, CvType.CV_32FC1);
|
||
|
src.put(0, 0, 1, 2);
|
||
|
src.put(1, 0, 2, 1);
|
||
|
int blockSize = 5;
|
||
|
|
||
|
Imgproc.cornerMinEigenVal(src, dst, blockSize);
|
||
13 years ago
|
|
||
|
truth = new Mat(imgprocSz, imgprocSz, CvType.CV_32FC1, new Scalar(0));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
|
||
|
Imgproc.cornerMinEigenVal(gray255, dst, blockSize);
|
||
13 years ago
|
|
||
|
truth = new Mat(matSize, matSize, CvType.CV_32FC1, new Scalar(0));
|
||
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCornerMinEigenValMatMatIntInt() {
|
||
|
Mat src = Mat.eye(3, 3, CvType.CV_32FC1);
|
||
|
int blockSize = 3;
|
||
|
int ksize = 5;
|
||
|
|
||
13 years ago
|
Imgproc.cornerMinEigenVal(src, dst, blockSize, ksize);
|
||
|
|
||
13 years ago
|
truth = new Mat(3, 3, CvType.CV_32FC1) {
|
||
|
{
|
||
|
put(0, 0, 1. / 18, 1. / 36, 1. / 18);
|
||
|
put(1, 0, 1. / 36, 1. / 18, 1. / 36);
|
||
|
put(2, 0, 1. / 18, 1. / 36, 1. / 18);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCornerMinEigenValMatMatIntIntInt() {
|
||
|
Mat src = Mat.eye(3, 3, CvType.CV_32FC1);
|
||
|
int blockSize = 3;
|
||
|
int ksize = 5;
|
||
|
|
||
12 years ago
|
Imgproc.cornerMinEigenVal(src, dst, blockSize, ksize, Core.BORDER_REFLECT);
|
||
13 years ago
|
|
||
13 years ago
|
truth = new Mat(3, 3, CvType.CV_32FC1) {
|
||
|
{
|
||
|
put(0, 0, 0.68055558, 0.92708349, 0.5868057);
|
||
|
put(1, 0, 0.92708343, 0.92708343, 0.92708343);
|
||
|
put(2, 0, 0.58680564, 0.92708343, 0.68055564);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCornerSubPix() {
|
||
13 years ago
|
Mat img = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(128));
|
||
|
Point truthPosition = new Point(img.cols() / 2, img.rows() / 2);
|
||
|
|
||
|
Rect r = new Rect(new Point(0, 0), truthPosition);
|
||
10 years ago
|
Imgproc.rectangle(img, r.tl(), r.br(), new Scalar(0), Core.FILLED);
|
||
13 years ago
|
MatOfPoint2f corners = new MatOfPoint2f(new Point(truthPosition.x + 1, truthPosition.y + 1));
|
||
13 years ago
|
Size winSize = new Size(2, 2);
|
||
|
Size zeroZone = new Size(-1, -1);
|
||
13 years ago
|
TermCriteria criteria = new TermCriteria(TermCriteria.EPS, 0, 0.01);
|
||
13 years ago
|
|
||
|
Imgproc.cornerSubPix(img, corners, winSize, zeroZone, criteria);
|
||
12 years ago
|
|
||
13 years ago
|
assertPointEquals(truthPosition, corners.toList().get(0), weakEPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCvtColorMatMatInt() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testCvtColorMatMatIntInt() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testDilateMatMatMat() {
|
||
|
Mat kernel = new Mat();
|
||
13 years ago
|
|
||
14 years ago
|
Imgproc.dilate(gray255, dst, kernel);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(gray255, dst);
|
||
|
|
||
|
Imgproc.dilate(gray1, dst, kernel);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(gray1, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testDilateMatMatMatPoint() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testDilateMatMatMatPointInt() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testDilateMatMatMatPointIntInt() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testDilateMatMatMatPointIntIntScalar() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
}
|
||
|
|
||
13 years ago
|
public void testDistanceTransformWithLabels() {
|
||
13 years ago
|
Mat dstLables = getMat(CvType.CV_32SC1, 0);
|
||
14 years ago
|
Mat labels = new Mat();
|
||
13 years ago
|
|
||
13 years ago
|
Imgproc.distanceTransformWithLabels(gray128, dst, labels, Imgproc.CV_DIST_L2, 3);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(dstLables, labels);
|
||
13 years ago
|
assertMatEqual(getMat(CvType.CV_32FC1, 8192), dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testDrawContoursMatListOfMatIntScalar() {
|
||
10 years ago
|
Imgproc.rectangle(gray0, new Point(1, 2), new Point(7, 8), new Scalar(100));
|
||
13 years ago
|
List<MatOfPoint> contours = new ArrayList<MatOfPoint>();
|
||
13 years ago
|
Imgproc.findContours(gray0, contours, new Mat(), Imgproc.RETR_EXTERNAL, Imgproc.CHAIN_APPROX_SIMPLE);
|
||
13 years ago
|
|
||
10 years ago
|
Imgproc.drawContours(gray0, contours, -1, new Scalar(0));
|
||
13 years ago
|
|
||
13 years ago
|
assertEquals(0, Core.countNonZero(gray0));
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testDrawContoursMatListOfMatIntScalarInt() {
|
||
10 years ago
|
Imgproc.rectangle(gray0, new Point(1, 2), new Point(7, 8), new Scalar(100));
|
||
13 years ago
|
List<MatOfPoint> contours = new ArrayList<MatOfPoint>();
|
||
13 years ago
|
Imgproc.findContours(gray0, contours, new Mat(), Imgproc.RETR_EXTERNAL, Imgproc.CHAIN_APPROX_SIMPLE);
|
||
|
|
||
10 years ago
|
Imgproc.drawContours(gray0, contours, -1, new Scalar(0), Core.FILLED);
|
||
13 years ago
|
|
||
13 years ago
|
assertEquals(0, Core.countNonZero(gray0));
|
||
14 years ago
|
}
|
||
|
|
||
|
|
||
|
public void testDrawContoursMatListOfMatIntScalarIntIntMatIntPoint() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testEqualizeHist() {
|
||
|
Imgproc.equalizeHist(gray0, dst);
|
||
|
assertMatEqual(gray0, dst);
|
||
|
|
||
|
Imgproc.equalizeHist(gray255, dst);
|
||
|
assertMatEqual(gray255, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testErodeMatMatMat() {
|
||
|
Mat kernel = new Mat();
|
||
13 years ago
|
|
||
14 years ago
|
Imgproc.erode(gray128, dst, kernel);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(gray128, dst);
|
||
|
}
|
||
|
|
||
|
public void testErodeMatMatMatPointInt() {
|
||
13 years ago
|
Mat src = new Mat(3, 3, CvType.CV_8U) {
|
||
|
{
|
||
|
put(0, 0, 15, 9, 10);
|
||
|
put(1, 0, 10, 8, 12);
|
||
|
put(2, 0, 12, 20, 25);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
Mat kernel = new Mat();
|
||
|
|
||
|
Imgproc.erode(src, dst, kernel, anchorPoint, 10);
|
||
13 years ago
|
|
||
13 years ago
|
truth = new Mat(3, 3, CvType.CV_8U, new Scalar(8));
|
||
14 years ago
|
assertMatEqual(truth, dst);
|
||
|
}
|
||
|
|
||
|
public void testErodeMatMatMatPointIntIntScalar() {
|
||
13 years ago
|
Mat src = new Mat(3, 3, CvType.CV_8U) {
|
||
|
{
|
||
|
put(0, 0, 15, 9, 10);
|
||
|
put(1, 0, 10, 8, 12);
|
||
|
put(2, 0, 12, 20, 25);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
Mat kernel = new Mat();
|
||
|
Scalar sc = new Scalar(3, 3);
|
||
|
|
||
12 years ago
|
Imgproc.erode(src, dst, kernel, anchorPoint, 10, Core.BORDER_REFLECT, sc);
|
||
13 years ago
|
|
||
13 years ago
|
truth = new Mat(3, 3, CvType.CV_8U, new Scalar(8));
|
||
14 years ago
|
assertMatEqual(truth, dst);
|
||
|
}
|
||
|
|
||
|
public void testFilter2DMatMatIntMat() {
|
||
|
Mat src = Mat.eye(4, 4, CvType.CV_32F);
|
||
13 years ago
|
Mat kernel = new Mat(imgprocSz, imgprocSz, CvType.CV_32F, new Scalar(1));
|
||
14 years ago
|
|
||
13 years ago
|
Imgproc.filter2D(src, dst, -1, kernel);
|
||
|
|
||
13 years ago
|
truth = new Mat(4, 4, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 2, 2, 1, 0);
|
||
|
put(1, 0, 2, 2, 1, 0);
|
||
|
put(2, 0, 1, 1, 2, 1);
|
||
|
put(3, 0, 0, 0, 1, 2);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
13 years ago
|
public void testFilter2DMatMatIntMatPointDouble() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
14 years ago
|
public void testFilter2DMatMatIntMatPointDoubleInt() {
|
||
13 years ago
|
Mat kernel = new Mat(imgprocSz, imgprocSz, CvType.CV_32F, new Scalar(0));
|
||
14 years ago
|
Point point = new Point(0, 0);
|
||
|
|
||
12 years ago
|
Imgproc.filter2D(gray128, dst, -1, kernel, point, 2, Core.BORDER_CONSTANT);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(gray2, dst);
|
||
|
}
|
||
|
|
||
|
public void testFindContoursMatListOfMatMatIntInt() {
|
||
14 years ago
|
Mat img = new Mat(50, 50, CvType.CV_8UC1, new Scalar(0));
|
||
13 years ago
|
List<MatOfPoint> contours = new ArrayList<MatOfPoint>(5);
|
||
13 years ago
|
Mat hierarchy = new Mat();
|
||
13 years ago
|
|
||
14 years ago
|
Imgproc.findContours(img, contours, hierarchy, Imgproc.RETR_EXTERNAL, Imgproc.CHAIN_APPROX_SIMPLE);
|
||
13 years ago
|
|
||
14 years ago
|
// no contours on empty image
|
||
|
assertEquals(contours.size(), 0);
|
||
|
assertEquals(contours.size(), hierarchy.total());
|
||
|
|
||
10 years ago
|
Imgproc.rectangle(img, new Point(10, 20), new Point(20, 30), new Scalar(100), 3, Imgproc.LINE_AA, 0);
|
||
10 years ago
|
Imgproc.rectangle(img, new Point(30, 35), new Point(40, 45), new Scalar(200));
|
||
13 years ago
|
|
||
14 years ago
|
Imgproc.findContours(img, contours, hierarchy, Imgproc.RETR_EXTERNAL, Imgproc.CHAIN_APPROX_SIMPLE);
|
||
13 years ago
|
|
||
14 years ago
|
// two contours of two rectangles
|
||
|
assertEquals(contours.size(), 2);
|
||
|
assertEquals(contours.size(), hierarchy.total());
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testFindContoursMatListOfMatMatIntIntPoint() {
|
||
13 years ago
|
Mat img = new Mat(50, 50, CvType.CV_8UC1, new Scalar(0));
|
||
|
Mat img2 = img.submat(5, 50, 3, 50);
|
||
13 years ago
|
List<MatOfPoint> contours = new ArrayList<MatOfPoint>();
|
||
|
List<MatOfPoint> contours2 = new ArrayList<MatOfPoint>();
|
||
13 years ago
|
Mat hierarchy = new Mat();
|
||
14 years ago
|
|
||
10 years ago
|
Imgproc.rectangle(img, new Point(10, 20), new Point(20, 30), new Scalar(100), 3, Imgproc.LINE_AA, 0);
|
||
10 years ago
|
Imgproc.rectangle(img, new Point(30, 35), new Point(40, 45), new Scalar(200));
|
||
13 years ago
|
|
||
13 years ago
|
Imgproc.findContours(img, contours, hierarchy, Imgproc.RETR_EXTERNAL, Imgproc.CHAIN_APPROX_SIMPLE);
|
||
|
Imgproc.findContours(img2, contours2, hierarchy, Imgproc.RETR_EXTERNAL, Imgproc.CHAIN_APPROX_SIMPLE, new Point(3, 5));
|
||
14 years ago
|
|
||
|
assertEquals(contours.size(), contours2.size());
|
||
|
assertMatEqual(contours.get(0), contours2.get(0));
|
||
13 years ago
|
/*
|
||
|
Log.d("findContours", "hierarchy=" + hierarchy);
|
||
|
int iBuff[] = new int[ (int) (hierarchy.total() * hierarchy.channels()) ]; // [ Contour0 (next sibling num, previous sibling num, 1st child num, parent num), Contour1(...), ...
|
||
|
hierarchy.get(0, 0, iBuff);
|
||
|
Log.d("findContours", Arrays.toString(iBuff));
|
||
12 years ago
|
*/
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testFitEllipse() {
|
||
13 years ago
|
MatOfPoint2f points = new MatOfPoint2f(new Point(0, 0), new Point(-1, 1), new Point(1, 1), new Point(1, -1), new Point(-1, -1));
|
||
14 years ago
|
RotatedRect rrect = new RotatedRect();
|
||
13 years ago
|
|
||
14 years ago
|
rrect = Imgproc.fitEllipse(points);
|
||
13 years ago
|
|
||
13 years ago
|
assertPointEquals(new Point(0, 0), rrect.center, EPS);
|
||
13 years ago
|
assertEquals(2.828, rrect.size.width, EPS);
|
||
|
assertEquals(2.828, rrect.size.height, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testFitLine() {
|
||
|
Mat points = new Mat(1, 4, CvType.CV_32FC2);
|
||
13 years ago
|
points.put(0, 0, 0, 0, 2, 3, 3, 4, 5, 8);
|
||
14 years ago
|
|
||
|
Mat linePoints = new Mat(4, 1, CvType.CV_32FC1);
|
||
|
linePoints.put(0, 0, 0.53196341, 0.84676737, 2.496531, 3.7467217);
|
||
|
|
||
|
Imgproc.fitLine(points, dst, Imgproc.CV_DIST_L12, 0, 0.01, 0.01);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(linePoints, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testFloodFillMatMatPointScalar() {
|
||
13 years ago
|
Mat mask = new Mat(matSize + 2, matSize + 2, CvType.CV_8U, new Scalar(0));
|
||
14 years ago
|
Mat img = gray0;
|
||
10 years ago
|
Imgproc.circle(mask, new Point(matSize / 2 + 1, matSize / 2 + 1), 3, new Scalar(2));
|
||
13 years ago
|
|
||
14 years ago
|
int retval = Imgproc.floodFill(img, mask, new Point(matSize / 2, matSize / 2), new Scalar(1));
|
||
13 years ago
|
|
||
14 years ago
|
assertEquals(Core.countNonZero(img), retval);
|
||
10 years ago
|
Imgproc.circle(mask, new Point(matSize / 2 + 1, matSize / 2 + 1), 3, new Scalar(0));
|
||
14 years ago
|
assertEquals(retval + 4 * (matSize + 1), Core.countNonZero(mask));
|
||
13 years ago
|
assertMatEqual(mask.submat(1, matSize + 1, 1, matSize + 1), img);
|
||
14 years ago
|
}
|
||
13 years ago
|
|
||
14 years ago
|
public void testFloodFillMatMatPointScalar_WithoutMask() {
|
||
|
Mat img = gray0;
|
||
10 years ago
|
Imgproc.circle(img, new Point(matSize / 2, matSize / 2), 3, new Scalar(2));
|
||
13 years ago
|
|
||
|
// TODO: ideally we should pass null instead of "new Mat()"
|
||
14 years ago
|
int retval = Imgproc.floodFill(img, new Mat(), new Point(matSize / 2, matSize / 2), new Scalar(1));
|
||
13 years ago
|
|
||
10 years ago
|
Imgproc.circle(img, new Point(matSize / 2, matSize / 2), 3, new Scalar(0));
|
||
14 years ago
|
assertEquals(Core.countNonZero(img), retval);
|
||
|
}
|
||
14 years ago
|
|
||
|
public void testFloodFillMatMatPointScalarRect() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testFloodFillMatMatPointScalarRectScalar() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testFloodFillMatMatPointScalarRectScalarScalar() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testFloodFillMatMatPointScalarRectScalarScalarInt() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testGaussianBlurMatMatSizeDouble() {
|
||
13 years ago
|
Imgproc.GaussianBlur(gray0, dst, size, 1);
|
||
14 years ago
|
assertMatEqual(gray0, dst);
|
||
|
|
||
13 years ago
|
Imgproc.GaussianBlur(gray2, dst, size, 1);
|
||
14 years ago
|
assertMatEqual(gray2, dst);
|
||
|
}
|
||
|
|
||
|
public void testGaussianBlurMatMatSizeDoubleDouble() {
|
||
13 years ago
|
Imgproc.GaussianBlur(gray2, dst, size, 0, 0);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(gray2, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testGaussianBlurMatMatSizeDoubleDoubleInt() {
|
||
12 years ago
|
Imgproc.GaussianBlur(gray2, dst, size, 1, 3, Core.BORDER_REFLECT);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(gray2, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testGetAffineTransform() {
|
||
12 years ago
|
MatOfPoint2f src = new MatOfPoint2f(new Point(2, 3), new Point(3, 1), new Point(1, 4));
|
||
|
MatOfPoint2f dst = new MatOfPoint2f(new Point(3, 3), new Point(7, 4), new Point(5, 6));
|
||
13 years ago
|
|
||
|
Mat transform = Imgproc.getAffineTransform(src, dst);
|
||
|
|
||
|
Mat truth = new Mat(2, 3, CvType.CV_64FC1) {
|
||
|
{
|
||
|
put(0, 0, -8, -6, 37);
|
||
|
put(1, 0, -7, -4, 29);
|
||
|
}
|
||
|
};
|
||
|
assertMatEqual(truth, transform, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testGetDefaultNewCameraMatrixMat() {
|
||
13 years ago
|
Mat mtx = Imgproc.getDefaultNewCameraMatrix(gray0);
|
||
14 years ago
|
|
||
13 years ago
|
assertFalse(mtx.empty());
|
||
|
assertEquals(0, Core.countNonZero(mtx));
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testGetDefaultNewCameraMatrixMatSizeBoolean() {
|
||
13 years ago
|
Mat mtx = Imgproc.getDefaultNewCameraMatrix(gray0, size, true);
|
||
14 years ago
|
|
||
13 years ago
|
assertFalse(mtx.empty());
|
||
|
assertFalse(0 == Core.countNonZero(mtx));
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testGetDerivKernelsMatMatIntIntInt() {
|
||
|
Mat kx = new Mat(imgprocSz, imgprocSz, CvType.CV_32F);
|
||
|
Mat ky = new Mat(imgprocSz, imgprocSz, CvType.CV_32F);
|
||
|
Mat expKx = new Mat(3, 1, CvType.CV_32F);
|
||
|
Mat expKy = new Mat(3, 1, CvType.CV_32F);
|
||
|
kx.put(0, 0, 1, 1);
|
||
|
kx.put(1, 0, 1, 1);
|
||
|
ky.put(0, 0, 2, 2);
|
||
|
ky.put(1, 0, 2, 2);
|
||
|
expKx.put(0, 0, 1, -2, 1);
|
||
|
expKy.put(0, 0, 1, -2, 1);
|
||
|
|
||
|
Imgproc.getDerivKernels(kx, ky, 2, 2, 3);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(expKx, kx, EPS);
|
||
|
assertMatEqual(expKy, ky, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testGetDerivKernelsMatMatIntIntIntBooleanInt() {
|
||
|
Mat kx = new Mat(imgprocSz, imgprocSz, CvType.CV_32F);
|
||
|
Mat ky = new Mat(imgprocSz, imgprocSz, CvType.CV_32F);
|
||
|
Mat expKx = new Mat(3, 1, CvType.CV_32F);
|
||
|
Mat expKy = new Mat(3, 1, CvType.CV_32F);
|
||
|
kx.put(0, 0, 1, 1);
|
||
|
kx.put(1, 0, 1, 1);
|
||
|
ky.put(0, 0, 2, 2);
|
||
|
ky.put(1, 0, 2, 2);
|
||
|
expKx.put(0, 0, 1, -2, 1);
|
||
|
expKy.put(0, 0, 1, -2, 1);
|
||
|
|
||
|
Imgproc.getDerivKernels(kx, ky, 2, 2, 3, true, CvType.CV_32F);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(expKx, kx, EPS);
|
||
|
assertMatEqual(expKy, ky, EPS);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testGetGaussianKernelIntDouble() {
|
||
|
dst = Imgproc.getGaussianKernel(1, 0.5);
|
||
13 years ago
|
|
||
13 years ago
|
truth = new Mat(1, 1, CvType.CV_64FC1, new Scalar(1));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testGetGaussianKernelIntDoubleInt() {
|
||
|
dst = Imgproc.getGaussianKernel(3, 0.8, CvType.CV_32F);
|
||
13 years ago
|
|
||
13 years ago
|
truth = new Mat(3, 1, CvType.CV_32F);
|
||
|
truth.put(0, 0, 0.23899426, 0.52201146, 0.23899426);
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
13 years ago
|
public void testGetPerspectiveTransform() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
14 years ago
|
public void testGetRectSubPixMatSizePointMat() {
|
||
|
Size size = new Size(3, 3);
|
||
|
Point center = new Point(gray255.cols() / 2, gray255.rows() / 2);
|
||
|
|
||
|
Imgproc.getRectSubPix(gray255, size, center, dst);
|
||
13 years ago
|
|
||
13 years ago
|
truth = new Mat(3, 3, CvType.CV_8U, new Scalar(255));
|
||
14 years ago
|
assertMatEqual(truth, dst);
|
||
|
}
|
||
|
|
||
|
public void testGetRectSubPixMatSizePointMatInt() {
|
||
|
Mat src = new Mat(10, 10, CvType.CV_32F, new Scalar(2));
|
||
|
Size patchSize = new Size(5, 5);
|
||
|
Point center = new Point(src.cols() / 2, src.rows() / 2);
|
||
|
|
||
|
Imgproc.getRectSubPix(src, patchSize, center, dst);
|
||
13 years ago
|
|
||
|
truth = new Mat(5, 5, CvType.CV_32F, new Scalar(2));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testGetRotationMatrix2D() {
|
||
|
Point center = new Point(0, 0);
|
||
13 years ago
|
|
||
|
dst = Imgproc.getRotationMatrix2D(center, 0, 1);
|
||
|
|
||
|
truth = new Mat(2, 3, CvType.CV_64F) {
|
||
|
{
|
||
|
put(0, 0, 1, 0, 0);
|
||
|
put(1, 0, 0, 1, 0);
|
||
|
}
|
||
|
};
|
||
|
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testGetStructuringElementIntSize() {
|
||
|
dst = Imgproc.getStructuringElement(Imgproc.MORPH_RECT, size);
|
||
13 years ago
|
|
||
|
truth = new Mat(3, 3, CvType.CV_8UC1, new Scalar(1));
|
||
14 years ago
|
assertMatEqual(truth, dst);
|
||
|
}
|
||
|
|
||
|
public void testGetStructuringElementIntSizePoint() {
|
||
13 years ago
|
dst = Imgproc.getStructuringElement(Imgproc.MORPH_CROSS, size, anchorPoint);
|
||
13 years ago
|
|
||
|
truth = new Mat(3, 3, CvType.CV_8UC1) {
|
||
|
{
|
||
|
put(0, 0, 0, 0, 1);
|
||
|
put(1, 0, 0, 0, 1);
|
||
|
put(2, 0, 1, 1, 1);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst);
|
||
|
}
|
||
|
|
||
13 years ago
|
public void testGoodFeaturesToTrackMatListOfPointIntDoubleDouble() {
|
||
13 years ago
|
Mat src = gray0;
|
||
10 years ago
|
Imgproc.rectangle(src, new Point(2, 2), new Point(8, 8), new Scalar(100), -1);
|
||
13 years ago
|
MatOfPoint lp = new MatOfPoint();
|
||
14 years ago
|
|
||
14 years ago
|
Imgproc.goodFeaturesToTrack(src, lp, 100, 0.01, 3);
|
||
13 years ago
|
|
||
13 years ago
|
assertEquals(4, lp.total());
|
||
14 years ago
|
}
|
||
|
|
||
13 years ago
|
public void testGoodFeaturesToTrackMatListOfPointIntDoubleDoubleMatIntBooleanDouble() {
|
||
13 years ago
|
Mat src = gray0;
|
||
10 years ago
|
Imgproc.rectangle(src, new Point(2, 2), new Point(8, 8), new Scalar(100), -1);
|
||
13 years ago
|
MatOfPoint lp = new MatOfPoint();
|
||
14 years ago
|
|
||
|
Imgproc.goodFeaturesToTrack(src, lp, 100, 0.01, 3, gray1, 4, true, 0);
|
||
13 years ago
|
|
||
13 years ago
|
assertEquals(4, lp.total());
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testGrabCutMatMatRectMatMatInt() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testGrabCutMatMatRectMatMatIntInt() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testHoughCirclesMatMatIntDoubleDouble() {
|
||
13 years ago
|
int sz = 512;
|
||
|
Mat img = new Mat(sz, sz, CvType.CV_8U, new Scalar(128));
|
||
|
Mat circles = new Mat();
|
||
|
|
||
13 years ago
|
Imgproc.HoughCircles(img, circles, Imgproc.CV_HOUGH_GRADIENT, 2, img.rows() / 4);
|
||
|
|
||
13 years ago
|
assertEquals(0, circles.cols());
|
||
13 years ago
|
}
|
||
|
|
||
|
public void testHoughCirclesMatMatIntDoubleDouble1() {
|
||
|
int sz = 512;
|
||
|
Mat img = new Mat(sz, sz, CvType.CV_8U, new Scalar(128));
|
||
|
Mat circles = new Mat();
|
||
13 years ago
|
|
||
|
Point center = new Point(img.cols() / 2, img.rows() / 2);
|
||
|
int radius = Math.min(img.cols() / 4, img.rows() / 4);
|
||
10 years ago
|
Imgproc.circle(img, center, radius, colorBlack, 3);
|
||
13 years ago
|
|
||
13 years ago
|
Imgproc.HoughCircles(img, circles, Imgproc.CV_HOUGH_GRADIENT, 2, img.rows() / 4);
|
||
|
|
||
13 years ago
|
assertEquals(1, circles.cols());
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testHoughCirclesMatMatIntDoubleDoubleDoubleDoubleIntInt() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testHoughLinesMatMatDoubleDoubleInt() {
|
||
13 years ago
|
int sz = 512;
|
||
13 years ago
|
Mat img = new Mat(sz, sz, CvType.CV_8U, new Scalar(0));
|
||
13 years ago
|
Point point1 = new Point(50, 50);
|
||
|
Point point2 = new Point(img.cols() / 2, img.rows() / 2);
|
||
10 years ago
|
Imgproc.line(img, point1, point2, colorWhite, 1);
|
||
13 years ago
|
Mat lines = new Mat();
|
||
13 years ago
|
|
||
13 years ago
|
Imgproc.HoughLines(img, lines, 1, 3.1415926/180, 100);
|
||
13 years ago
|
|
||
13 years ago
|
assertEquals(1, lines.cols());
|
||
12 years ago
|
|
||
13 years ago
|
/*
|
||
|
Log.d("HoughLines", "lines=" + lines);
|
||
|
int num = (int)lines.total();
|
||
|
int buff[] = new int[num*4]; //[ (x1, y1, x2, y2), (...), ...]
|
||
|
lines.get(0, 0, buff);
|
||
|
Log.d("HoughLines", "lines=" + Arrays.toString(buff));
|
||
|
*/
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testHoughLinesMatMatDoubleDoubleIntDouble() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testHoughLinesMatMatDoubleDoubleIntDoubleDouble() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testHoughLinesPMatMatDoubleDoubleInt() {
|
||
13 years ago
|
int sz = 512;
|
||
|
Mat img = new Mat(sz, sz, CvType.CV_8U, new Scalar(0));
|
||
|
Point point1 = new Point(0, 0);
|
||
|
Point point2 = new Point(sz, sz);
|
||
|
Point point3 = new Point(sz, 0);
|
||
|
Point point4 = new Point(2*sz/3, sz/3);
|
||
10 years ago
|
Imgproc.line(img, point1, point2, Scalar.all(255), 1);
|
||
|
Imgproc.line(img, point3, point4, Scalar.all(255), 1);
|
||
13 years ago
|
Mat lines = new Mat();
|
||
|
|
||
|
Imgproc.HoughLinesP(img, lines, 1, 3.1415926/180, 100);
|
||
|
|
||
|
assertEquals(2, lines.cols());
|
||
12 years ago
|
|
||
13 years ago
|
/*
|
||
|
Log.d("HoughLinesP", "lines=" + lines);
|
||
|
int num = (int)lines.cols();
|
||
|
int buff[] = new int[num*4]; // CV_32SC4 as [ (x1, y1, x2, y2), (...), ...]
|
||
|
lines.get(0, 0, buff);
|
||
|
Log.d("HoughLinesP", "lines=" + Arrays.toString(buff));
|
||
|
*/
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testHoughLinesPMatMatDoubleDoubleIntDouble() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testHoughLinesPMatMatDoubleDoubleIntDoubleDouble() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testHuMoments() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testInitUndistortRectifyMap() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
Mat cameraMatrix = new Mat(3, 3, CvType.CV_32F);
|
||
|
cameraMatrix.put(0, 0, 1, 0, 1);
|
||
|
cameraMatrix.put(1, 0, 0, 1, 1);
|
||
|
cameraMatrix.put(2, 0, 0, 0, 1);
|
||
|
|
||
13 years ago
|
Mat R = new Mat(3, 3, CvType.CV_32F, new Scalar(2));
|
||
|
Mat newCameraMatrix = new Mat(3, 3, CvType.CV_32F, new Scalar(3));
|
||
14 years ago
|
|
||
|
Mat distCoeffs = new Mat();
|
||
|
Mat map1 = new Mat();
|
||
|
Mat map2 = new Mat();
|
||
|
|
||
13 years ago
|
// TODO: complete this test
|
||
|
Imgproc.initUndistortRectifyMap(cameraMatrix, distCoeffs, R, newCameraMatrix, size, CvType.CV_32F, map1, map2);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testInitWideAngleProjMapMatMatSizeIntIntMatMat() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
Mat cameraMatrix = new Mat(3, 3, CvType.CV_32F);
|
||
|
Mat distCoeffs = new Mat(1, 4, CvType.CV_32F);
|
||
|
// Size imageSize = new Size(2, 2);
|
||
|
|
||
|
cameraMatrix.put(0, 0, 1, 0, 1);
|
||
|
cameraMatrix.put(1, 0, 0, 1, 2);
|
||
|
cameraMatrix.put(2, 0, 0, 0, 1);
|
||
|
|
||
13 years ago
|
distCoeffs.put(0, 0, 1, 3, 2, 4);
|
||
13 years ago
|
truth = new Mat(3, 3, CvType.CV_32F);
|
||
14 years ago
|
truth.put(0, 0, 0, 0, 0);
|
||
|
truth.put(1, 0, 0, 0, 0);
|
||
|
truth.put(2, 0, 0, 3, 0);
|
||
|
// TODO: No documentation for this function
|
||
|
// Imgproc.initWideAngleProjMap(cameraMatrix, distCoeffs, imageSize,
|
||
13 years ago
|
// 5, m1type, truthput1, truthput2);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testInitWideAngleProjMapMatMatSizeIntIntMatMatInt() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testInitWideAngleProjMapMatMatSizeIntIntMatMatIntDouble() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testIntegral2MatMatMat() {
|
||
13 years ago
|
Mat src = new Mat(3, 3, CvType.CV_32F, new Scalar(3));
|
||
14 years ago
|
Mat expSum = new Mat(4, 4, CvType.CV_64F);
|
||
|
Mat expSqsum = new Mat(4, 4, CvType.CV_64F);
|
||
|
Mat sum = new Mat();
|
||
|
Mat sqsum = new Mat();
|
||
|
|
||
|
expSum.put(0, 0, 0, 0, 0, 0);
|
||
|
expSum.put(1, 0, 0, 3, 6, 9);
|
||
|
expSum.put(2, 0, 0, 6, 12, 18);
|
||
|
expSum.put(3, 0, 0, 9, 18, 27);
|
||
|
|
||
|
expSqsum.put(0, 0, 0, 0, 0, 0);
|
||
|
expSqsum.put(1, 0, 0, 9, 18, 27);
|
||
|
expSqsum.put(2, 0, 0, 18, 36, 54);
|
||
|
expSqsum.put(3, 0, 0, 27, 54, 81);
|
||
|
|
||
|
Imgproc.integral2(src, sum, sqsum);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(expSum, sum, EPS);
|
||
|
assertMatEqual(expSqsum, sqsum, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testIntegral2MatMatMatInt() {
|
||
13 years ago
|
Mat src = new Mat(3, 3, CvType.CV_32F, new Scalar(3));
|
||
14 years ago
|
Mat expSum = new Mat(4, 4, CvType.CV_64F);
|
||
|
Mat expSqsum = new Mat(4, 4, CvType.CV_64F);
|
||
|
Mat sum = new Mat();
|
||
|
Mat sqsum = new Mat();
|
||
|
|
||
|
expSum.put(0, 0, 0, 0, 0, 0);
|
||
|
expSum.put(1, 0, 0, 3, 6, 9);
|
||
|
expSum.put(2, 0, 0, 6, 12, 18);
|
||
|
expSum.put(3, 0, 0, 9, 18, 27);
|
||
|
|
||
|
expSqsum.put(0, 0, 0, 0, 0, 0);
|
||
|
expSqsum.put(1, 0, 0, 9, 18, 27);
|
||
|
expSqsum.put(2, 0, 0, 18, 36, 54);
|
||
|
expSqsum.put(3, 0, 0, 27, 54, 81);
|
||
|
|
||
11 years ago
|
Imgproc.integral2(src, sum, sqsum, CvType.CV_64F, CvType.CV_64F);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(expSum, sum, EPS);
|
||
|
assertMatEqual(expSqsum, sqsum, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testIntegral3MatMatMatMat() {
|
||
13 years ago
|
Mat src = new Mat(1, 1, CvType.CV_32F, new Scalar(1));
|
||
14 years ago
|
Mat expSum = new Mat(imgprocSz, imgprocSz, CvType.CV_64F);
|
||
|
Mat expSqsum = new Mat(imgprocSz, imgprocSz, CvType.CV_64F);
|
||
|
Mat expTilted = new Mat(imgprocSz, imgprocSz, CvType.CV_64F);
|
||
|
Mat sum = new Mat();
|
||
|
Mat sqsum = new Mat();
|
||
|
Mat tilted = new Mat();
|
||
|
|
||
|
expSum.put(0, 0, 0, 0);
|
||
|
expSum.put(1, 0, 0, 1);
|
||
|
|
||
|
expSqsum.put(0, 0, 0, 0);
|
||
|
expSqsum.put(1, 0, 0, 1);
|
||
|
|
||
|
expTilted.put(0, 0, 0, 0);
|
||
|
expTilted.put(1, 0, 0, 1);
|
||
|
|
||
|
Imgproc.integral3(src, sum, sqsum, tilted);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(expSum, sum, EPS);
|
||
|
assertMatEqual(expSqsum, sqsum, EPS);
|
||
|
assertMatEqual(expTilted, tilted, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testIntegral3MatMatMatMatInt() {
|
||
13 years ago
|
Mat src = new Mat(1, 1, CvType.CV_32F, new Scalar(1));
|
||
14 years ago
|
Mat expSum = new Mat(imgprocSz, imgprocSz, CvType.CV_64F);
|
||
|
Mat expSqsum = new Mat(imgprocSz, imgprocSz, CvType.CV_64F);
|
||
|
Mat expTilted = new Mat(imgprocSz, imgprocSz, CvType.CV_64F);
|
||
|
Mat sum = new Mat();
|
||
|
Mat sqsum = new Mat();
|
||
|
Mat tilted = new Mat();
|
||
|
|
||
|
expSum.put(0, 0, 0, 0);
|
||
|
expSum.put(1, 0, 0, 1);
|
||
|
|
||
|
expSqsum.put(0, 0, 0, 0);
|
||
|
expSqsum.put(1, 0, 0, 1);
|
||
|
|
||
|
expTilted.put(0, 0, 0, 0);
|
||
|
expTilted.put(1, 0, 0, 1);
|
||
|
|
||
11 years ago
|
Imgproc.integral3(src, sum, sqsum, tilted, CvType.CV_64F, CvType.CV_64F);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(expSum, sum, EPS);
|
||
|
assertMatEqual(expSqsum, sqsum, EPS);
|
||
|
assertMatEqual(expTilted, tilted, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testIntegralMatMat() {
|
||
13 years ago
|
Mat src = new Mat(imgprocSz, imgprocSz, CvType.CV_32F, new Scalar(2));
|
||
14 years ago
|
|
||
|
Imgproc.integral(src, dst);
|
||
|
|
||
13 years ago
|
truth = new Mat(3, 3, CvType.CV_64F) {
|
||
|
{
|
||
|
put(0, 0, 0, 0, 0);
|
||
|
put(1, 0, 0, 2, 4);
|
||
|
put(2, 0, 0, 4, 8);
|
||
|
}
|
||
|
};
|
||
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testIntegralMatMatInt() {
|
||
13 years ago
|
Mat src = new Mat(imgprocSz, imgprocSz, CvType.CV_32F, new Scalar(2));
|
||
14 years ago
|
|
||
|
Imgproc.integral(src, dst, CvType.CV_64F);
|
||
13 years ago
|
|
||
|
truth = new Mat(3, 3, CvType.CV_64F) {
|
||
|
{
|
||
|
put(0, 0, 0, 0, 0);
|
||
|
put(1, 0, 0, 2, 4);
|
||
|
put(2, 0, 0, 4, 8);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testInvertAffineTransform() {
|
||
|
Mat src = new Mat(2, 3, CvType.CV_64F, new Scalar(1));
|
||
|
|
||
|
Imgproc.invertAffineTransform(src, dst);
|
||
13 years ago
|
|
||
|
truth = new Mat(2, 3, CvType.CV_64F, new Scalar(0));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testIsContourConvex() {
|
||
13 years ago
|
MatOfPoint contour1 = new MatOfPoint(new Point(0, 0), new Point(10, 0), new Point(10, 10), new Point(5, 4));
|
||
13 years ago
|
|
||
14 years ago
|
assertFalse(Imgproc.isContourConvex(contour1));
|
||
|
|
||
13 years ago
|
MatOfPoint contour2 = new MatOfPoint(new Point(0, 0), new Point(10, 0), new Point(10, 10), new Point(5, 6));
|
||
13 years ago
|
|
||
|
assertTrue(Imgproc.isContourConvex(contour2));
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testLaplacianMatMatInt() {
|
||
|
Imgproc.Laplacian(gray0, dst, CvType.CV_8U);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(gray0, dst);
|
||
|
}
|
||
|
|
||
|
public void testLaplacianMatMatIntIntDoubleDouble() {
|
||
|
Mat src = Mat.eye(imgprocSz, imgprocSz, CvType.CV_32F);
|
||
|
|
||
13 years ago
|
Imgproc.Laplacian(src, dst, CvType.CV_32F, 1, 2, EPS);
|
||
14 years ago
|
|
||
13 years ago
|
truth = new Mat(imgprocSz, imgprocSz, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, -7.9990001, 8.0009995);
|
||
|
put(1, 0, 8.0009995, -7.9990001);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testLaplacianMatMatIntIntDoubleDoubleInt() {
|
||
13 years ago
|
Mat src = new Mat(3, 3, CvType.CV_32F, new Scalar(2));
|
||
|
|
||
12 years ago
|
Imgproc.Laplacian(src, dst, CvType.CV_32F, 1, 2, EPS, Core.BORDER_REFLECT);
|
||
14 years ago
|
|
||
13 years ago
|
truth = new Mat(3, 3, CvType.CV_32F, new Scalar(0.00099945068));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testMatchShapes() {
|
||
|
Mat contour1 = new Mat(1, 4, CvType.CV_32FC2);
|
||
|
Mat contour2 = new Mat(1, 4, CvType.CV_32FC2);
|
||
13 years ago
|
contour1.put(0, 0, 1, 1, 5, 1, 4, 3, 6, 2);
|
||
|
contour2.put(0, 0, 1, 1, 6, 1, 4, 1, 2, 5);
|
||
14 years ago
|
|
||
13 years ago
|
double distance = Imgproc.matchShapes(contour1, contour2, Imgproc.CV_CONTOURS_MATCH_I1, 1);
|
||
14 years ago
|
|
||
13 years ago
|
assertEquals(2.81109697365334, distance, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testMatchTemplate() {
|
||
|
Mat image = new Mat(imgprocSz, imgprocSz, CvType.CV_8U);
|
||
|
Mat templ = new Mat(imgprocSz, imgprocSz, CvType.CV_8U);
|
||
|
image.put(0, 0, 1, 2, 3, 4);
|
||
|
templ.put(0, 0, 5, 6, 7, 8);
|
||
|
|
||
|
Imgproc.matchTemplate(image, templ, dst, Imgproc.TM_CCORR);
|
||
13 years ago
|
|
||
|
truth = new Mat(1, 1, CvType.CV_32F, new Scalar(70));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
|
||
|
Imgproc.matchTemplate(gray255, gray0, dst, Imgproc.TM_CCORR);
|
||
13 years ago
|
|
||
|
truth = new Mat(1, 1, CvType.CV_32F, new Scalar(0));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testMedianBlur() {
|
||
|
Imgproc.medianBlur(gray255, dst, 5);
|
||
|
assertMatEqual(gray255, dst);
|
||
|
|
||
|
Imgproc.medianBlur(gray2, dst, 3);
|
||
|
assertMatEqual(gray2, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testMinAreaRect() {
|
||
13 years ago
|
MatOfPoint2f points = new MatOfPoint2f(new Point(1, 1), new Point(5, 1), new Point(4, 3), new Point(6, 2));
|
||
14 years ago
|
|
||
|
RotatedRect rrect = Imgproc.minAreaRect(points);
|
||
13 years ago
|
|
||
14 years ago
|
assertEquals(new Size(2, 5), rrect.size);
|
||
13 years ago
|
assertEquals(-90., rrect.angle);
|
||
14 years ago
|
assertEquals(new Point(3.5, 2), rrect.center);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testMinEnclosingCircle() {
|
||
13 years ago
|
MatOfPoint2f points = new MatOfPoint2f(new Point(0, 0), new Point(-1, 0), new Point(0, -1), new Point(1, 0), new Point(0, 1));
|
||
14 years ago
|
Point actualCenter = new Point();
|
||
13 years ago
|
float[] radius = new float[1];
|
||
13 years ago
|
|
||
13 years ago
|
Imgproc.minEnclosingCircle(points, actualCenter, radius);
|
||
13 years ago
|
|
||
13 years ago
|
assertEquals(new Point(0, 0), actualCenter);
|
||
|
assertEquals(1.03f, radius[0], EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testMomentsMat() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testMomentsMatBoolean() {
|
||
|
fail("Not yet implemented");
|
||
|
}
|
||
|
|
||
|
public void testMorphologyExMatMatIntMat() {
|
||
|
Imgproc.morphologyEx(gray255, dst, Imgproc.MORPH_GRADIENT, gray0);
|
||
13 years ago
|
|
||
14 years ago
|
assertMatEqual(gray0, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testMorphologyExMatMatIntMatPointInt() {
|
||
|
Mat src = Mat.eye(imgprocSz, imgprocSz, CvType.CV_8U);
|
||
|
|
||
|
Mat kernel = new Mat(imgprocSz, imgprocSz, CvType.CV_8U, new Scalar(0));
|
||
|
Point point = new Point(0, 0);
|
||
|
|
||
|
Imgproc.morphologyEx(src, dst, Imgproc.MORPH_CLOSE, kernel, point, 10);
|
||
13 years ago
|
|
||
14 years ago
|
truth = Mat.eye(imgprocSz, imgprocSz, CvType.CV_8U);
|
||
|
assertMatEqual(truth, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
|
||
|
public void testMorphologyExMatMatIntMatPointIntIntScalar() {
|
||
|
Mat src = new Mat(imgprocSz, imgprocSz, CvType.CV_8U);
|
||
|
src.put(0, 0, 2, 1);
|
||
|
src.put(1, 0, 2, 1);
|
||
|
|
||
|
Mat kernel = new Mat(imgprocSz, imgprocSz, CvType.CV_8U, new Scalar(1));
|
||
|
Point point = new Point(1, 1);
|
||
|
Scalar sc = new Scalar(3, 3);
|
||
|
|
||
12 years ago
|
Imgproc.morphologyEx(src, dst, Imgproc.MORPH_TOPHAT, kernel, point, 10, Core.BORDER_REFLECT, sc);
|
||
13 years ago
|
truth = new Mat(imgprocSz, imgprocSz, CvType.CV_8U) {
|
||
|
{
|
||
|
put(0, 0, 1, 0);
|
||
|
put(1, 0, 1, 0);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testPointPolygonTest() {
|
||
12 years ago
|
MatOfPoint2f contour = new MatOfPoint2f(new Point(0, 0), new Point(1, 3), new Point(3, 4), new Point(4, 3), new Point(2, 1));
|
||
13 years ago
|
double sign1 = Imgproc.pointPolygonTest(contour, new Point(2, 2), false);
|
||
13 years ago
|
assertEquals(1.0, sign1);
|
||
14 years ago
|
|
||
13 years ago
|
double sign2 = Imgproc.pointPolygonTest(contour, new Point(4, 4), true);
|
||
|
assertEquals(-Math.sqrt(0.5), sign2);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testPreCornerDetectMatMatInt() {
|
||
|
Mat src = new Mat(4, 4, CvType.CV_32F, new Scalar(1));
|
||
|
int ksize = 3;
|
||
|
|
||
|
Imgproc.preCornerDetect(src, dst, ksize);
|
||
13 years ago
|
|
||
|
truth = new Mat(4, 4, CvType.CV_32F, new Scalar(0));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testPreCornerDetectMatMatIntInt() {
|
||
|
Mat src = new Mat(4, 4, CvType.CV_32F, new Scalar(1));
|
||
|
int ksize = 3;
|
||
|
|
||
12 years ago
|
Imgproc.preCornerDetect(src, dst, ksize, Core.BORDER_REFLECT);
|
||
13 years ago
|
|
||
13 years ago
|
truth = new Mat(4, 4, CvType.CV_32F, new Scalar(0));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testPyrDownMatMat() {
|
||
13 years ago
|
Mat src = new Mat(4, 4, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 2, 1, 4, 2);
|
||
|
put(1, 0, 3, 2, 6, 8);
|
||
|
put(2, 0, 4, 6, 8, 10);
|
||
|
put(3, 0, 12, 32, 6, 18);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
|
||
|
Imgproc.pyrDown(src, dst);
|
||
13 years ago
|
|
||
|
truth = new Mat(imgprocSz, imgprocSz, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 2.78125, 4.609375);
|
||
|
put(1, 0, 8.546875, 8.8515625);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testPyrDownMatMatSize() {
|
||
13 years ago
|
Mat src = new Mat(4, 4, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 2, 1, 4, 2);
|
||
|
put(1, 0, 3, 2, 6, 8);
|
||
|
put(2, 0, 4, 6, 8, 10);
|
||
|
put(3, 0, 12, 32, 6, 18);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
Size dstSize = new Size(2, 2);
|
||
|
|
||
|
Imgproc.pyrDown(src, dst, dstSize);
|
||
13 years ago
|
|
||
|
truth = new Mat(imgprocSz, imgprocSz, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 2.78125, 4.609375);
|
||
|
put(1, 0, 8.546875, 8.8515625);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testPyrMeanShiftFilteringMatMatDoubleDouble() {
|
||
13 years ago
|
Mat src = new Mat(matSize, matSize, CvType.CV_8UC3, new Scalar(0));
|
||
14 years ago
|
|
||
13 years ago
|
Imgproc.pyrMeanShiftFiltering(src, dst, 10, 50);
|
||
|
|
||
|
assertMatEqual(src, dst);
|
||
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testPyrMeanShiftFilteringMatMatDoubleDoubleInt() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testPyrMeanShiftFilteringMatMatDoubleDoubleIntTermCriteria() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testPyrUpMatMat() {
|
||
|
Mat src = new Mat(imgprocSz, imgprocSz, CvType.CV_32F);
|
||
|
src.put(0, 0, 2, 1);
|
||
|
src.put(1, 0, 3, 2);
|
||
|
|
||
|
Imgproc.pyrUp(src, dst);
|
||
13 years ago
|
|
||
|
truth = new Mat(4, 4, CvType.CV_32F) {
|
||
|
{
|
||
13 years ago
|
put(0, 0, 2, 1.75, 1.375, 1.25);
|
||
|
put(1, 0, 2.25, 2, 1.625, 1.5);
|
||
|
put(2, 0, 2.625, 2.375, 2, 1.875);
|
||
|
put(3, 0, 2.75, 2.5, 2.125, 2);
|
||
13 years ago
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testPyrUpMatMatSize() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testRemapMatMatMatMatInt() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
|
// this test does something weird
|
||
|
Mat src = new Mat(imgprocSz, imgprocSz, CvType.CV_32F, new Scalar(2));
|
||
14 years ago
|
Mat map1 = new Mat(1, 3, CvType.CV_32FC1);
|
||
|
Mat map2 = new Mat(1, 3, CvType.CV_32FC1);
|
||
|
|
||
13 years ago
|
map1.put(0, 0, 3, 6, 5);
|
||
|
map2.put(0, 0, 4, 8, 12);
|
||
14 years ago
|
|
||
|
Imgproc.remap(src, dst, map1, map2, Imgproc.INTER_LINEAR);
|
||
13 years ago
|
|
||
|
truth = new Mat(1, 3, CvType.CV_32F, new Scalar(0));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testRemapMatMatMatMatIntIntScalar() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
|
// this test does something weird
|
||
|
Mat src = new Mat(imgprocSz, imgprocSz, CvType.CV_32F, new Scalar(2));
|
||
14 years ago
|
Mat map1 = new Mat(1, 3, CvType.CV_32FC1);
|
||
|
Mat map2 = new Mat(1, 3, CvType.CV_32FC1);
|
||
|
|
||
13 years ago
|
Scalar sc = new Scalar(0);
|
||
14 years ago
|
|
||
13 years ago
|
map1.put(0, 0, 3, 6, 5, 0);
|
||
|
map2.put(0, 0, 4, 8, 12);
|
||
14 years ago
|
|
||
|
truth = new Mat(1, 3, CvType.CV_32F, new Scalar(2));
|
||
|
|
||
12 years ago
|
Imgproc.remap(src, dst, map1, map2, Imgproc.INTER_LINEAR, Core.BORDER_REFLECT, sc);
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testResizeMatMatSize() {
|
||
13 years ago
|
Mat src = new Mat(imgprocSz, imgprocSz, CvType.CV_8UC1, new Scalar(1));
|
||
14 years ago
|
Size dsize = new Size(1, 1);
|
||
|
|
||
|
Imgproc.resize(src, dst, dsize);
|
||
13 years ago
|
|
||
|
truth = new Mat(1, 1, CvType.CV_8UC1, new Scalar(1));
|
||
14 years ago
|
assertMatEqual(truth, dst);
|
||
|
}
|
||
|
|
||
|
public void testResizeMatMatSizeDoubleDoubleInt() {
|
||
13 years ago
|
Imgproc.resize(gray255, dst, new Size(2, 2), 0, 0, Imgproc.INTER_AREA);
|
||
14 years ago
|
|
||
13 years ago
|
truth = new Mat(2, 2, CvType.CV_8UC1, new Scalar(255));
|
||
14 years ago
|
assertMatEqual(truth, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testScharrMatMatIntIntInt() {
|
||
|
Mat src = Mat.eye(imgprocSz, imgprocSz, CvType.CV_32F);
|
||
|
|
||
|
Imgproc.Scharr(src, dst, CvType.CV_32F, 1, 0);
|
||
13 years ago
|
|
||
|
truth = new Mat(imgprocSz, imgprocSz, CvType.CV_32F, new Scalar(0));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testScharrMatMatIntIntIntDoubleDouble() {
|
||
|
Mat src = Mat.eye(imgprocSz, imgprocSz, CvType.CV_32F);
|
||
|
|
||
|
Imgproc.Scharr(src, dst, CvType.CV_32F, 1, 0, 1.5, 0.001);
|
||
13 years ago
|
|
||
|
truth = new Mat(imgprocSz, imgprocSz, CvType.CV_32F, new Scalar(0.001));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testScharrMatMatIntIntIntDoubleDoubleInt() {
|
||
|
Mat src = Mat.eye(3, 3, CvType.CV_32F);
|
||
|
|
||
12 years ago
|
Imgproc.Scharr(src, dst, CvType.CV_32F, 1, 0, 1.5, 0, Core.BORDER_REFLECT);
|
||
14 years ago
|
|
||
13 years ago
|
truth = new Mat(3, 3, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, -15, -19.5, -4.5);
|
||
|
put(1, 0, 10.5, 0, -10.5);
|
||
|
put(2, 0, 4.5, 19.5, 15);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testSepFilter2DMatMatIntMatMat() {
|
||
13 years ago
|
Mat src = new Mat(imgprocSz, imgprocSz, CvType.CV_32F, new Scalar(2));
|
||
14 years ago
|
Mat kernelX = new Mat(1, 3, CvType.CV_32FC1);
|
||
|
Mat kernelY = new Mat(1, 3, CvType.CV_32FC1);
|
||
13 years ago
|
kernelX.put(0, 0, 4, 3, 7);
|
||
|
kernelY.put(0, 0, 9, 4, 2);
|
||
14 years ago
|
|
||
|
Imgproc.sepFilter2D(src, dst, CvType.CV_32F, kernelX, kernelY);
|
||
13 years ago
|
|
||
|
truth = new Mat(imgprocSz, imgprocSz, CvType.CV_32F, new Scalar(420));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testSepFilter2DMatMatIntMatMatPointDouble() {
|
||
13 years ago
|
Mat src = new Mat(imgprocSz, imgprocSz, CvType.CV_32FC1, new Scalar(2));
|
||
14 years ago
|
Mat kernelX = new Mat(1, 3, CvType.CV_32FC1);
|
||
13 years ago
|
kernelX.put(0, 0, 2, 2, 2);
|
||
14 years ago
|
Mat kernelY = new Mat(1, 3, CvType.CV_32FC1);
|
||
13 years ago
|
kernelY.put(0, 0, 1, 1, 1);
|
||
|
|
||
|
Imgproc.sepFilter2D(src, dst, CvType.CV_32F, kernelX, kernelY, anchorPoint, weakEPS);
|
||
14 years ago
|
|
||
13 years ago
|
truth = new Mat(imgprocSz, imgprocSz, CvType.CV_32F, new Scalar(36 + weakEPS));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testSepFilter2DMatMatIntMatMatPointDoubleInt() {
|
||
|
Mat kernelX = new Mat(1, 3, CvType.CV_32FC1);
|
||
13 years ago
|
kernelX.put(0, 0, 2, 2, 2);
|
||
14 years ago
|
|
||
|
Mat kernelY = new Mat(1, 3, CvType.CV_32FC1);
|
||
13 years ago
|
kernelY.put(0, 0, 1, 1, 1);
|
||
14 years ago
|
|
||
12 years ago
|
Imgproc.sepFilter2D(gray0, dst, CvType.CV_32F, kernelX, kernelY, anchorPoint, weakEPS, Core.BORDER_REFLECT);
|
||
13 years ago
|
|
||
|
truth = new Mat(10, 10, CvType.CV_32F, new Scalar(weakEPS));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testSobelMatMatIntIntInt() {
|
||
13 years ago
|
Imgproc.Sobel(gray255, dst, CvType.CV_8U, 1, 0);
|
||
|
|
||
14 years ago
|
assertMatEqual(gray0, dst);
|
||
|
}
|
||
|
|
||
|
public void testSobelMatMatIntIntIntIntDoubleDouble() {
|
||
13 years ago
|
Imgproc.Sobel(gray255, dst, CvType.CV_8U, 1, 0, 3, 2, 0.001);
|
||
14 years ago
|
assertMatEqual(gray0, dst);
|
||
13 years ago
|
// TODO_: write better test
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testSobelMatMatIntIntIntIntDoubleDoubleInt() {
|
||
13 years ago
|
Mat src = new Mat(3, 3, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 2, 0, 1);
|
||
|
put(1, 0, 6, 4, 3);
|
||
|
put(2, 0, 1, 0, 2);
|
||
|
}
|
||
|
};
|
||
|
|
||
12 years ago
|
Imgproc.Sobel(src, dst, CvType.CV_32F, 1, 0, 3, 2, 0, Core.BORDER_REPLICATE);
|
||
13 years ago
|
|
||
|
truth = new Mat(3, 3, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, -16, -12, 4);
|
||
|
put(1, 0, -14, -12, 2);
|
||
|
put(2, 0, -10, 0, 10);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testThreshold() {
|
||
13 years ago
|
Imgproc.threshold(makeMask(gray0.clone(), 10), dst, 5, 255, Imgproc.THRESH_TRUNC);
|
||
|
assertMatEqual(makeMask(gray0.clone(), 5), dst);
|
||
14 years ago
|
|
||
13 years ago
|
Imgproc.threshold(makeMask(gray2.clone(), 10), dst, 1, 255, Imgproc.THRESH_BINARY);
|
||
14 years ago
|
assertMatEqual(gray255, dst);
|
||
|
|
||
13 years ago
|
Imgproc.threshold(makeMask(gray2.clone(), 10), dst, 3, 255, Imgproc.THRESH_BINARY_INV);
|
||
|
assertMatEqual(makeMask(gray255.clone(), 0), dst);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testUndistortMatMatMatMat() {
|
||
13 years ago
|
Mat src = new Mat(3, 3, CvType.CV_32F, new Scalar(3));
|
||
|
Mat cameraMatrix = new Mat(3, 3, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 1, 0, 1);
|
||
|
put(1, 0, 0, 1, 2);
|
||
|
put(2, 0, 0, 0, 1);
|
||
|
}
|
||
|
};
|
||
|
Mat distCoeffs = new Mat(1, 4, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 1, 3, 2, 4);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
|
||
|
Imgproc.undistort(src, dst, cameraMatrix, distCoeffs);
|
||
13 years ago
|
|
||
|
truth = new Mat(3, 3, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 0, 0, 0);
|
||
|
put(1, 0, 0, 0, 0);
|
||
|
put(2, 0, 0, 3, 0);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testUndistortMatMatMatMatMat() {
|
||
13 years ago
|
Mat src = new Mat(3, 3, CvType.CV_32F, new Scalar(3));
|
||
|
Mat cameraMatrix = new Mat(3, 3, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 1, 0, 1);
|
||
|
put(1, 0, 0, 1, 2);
|
||
|
put(2, 0, 0, 0, 1);
|
||
|
}
|
||
|
};
|
||
|
Mat distCoeffs = new Mat(1, 4, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 2, 1, 4, 5);
|
||
|
}
|
||
|
};
|
||
|
Mat newCameraMatrix = new Mat(3, 3, CvType.CV_32F, new Scalar(1));
|
||
14 years ago
|
|
||
13 years ago
|
Imgproc.undistort(src, dst, cameraMatrix, distCoeffs, newCameraMatrix);
|
||
14 years ago
|
|
||
|
truth = new Mat(3, 3, CvType.CV_32F, new Scalar(3));
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
13 years ago
|
//undistortPoints(List<Point> src, List<Point> dst, Mat cameraMatrix, Mat distCoeffs)
|
||
|
public void testUndistortPointsListOfPointListOfPointMatMat() {
|
||
12 years ago
|
MatOfPoint2f src = new MatOfPoint2f(new Point(1, 2), new Point(3, 4), new Point(-1, -1));
|
||
|
MatOfPoint2f dst = new MatOfPoint2f();
|
||
13 years ago
|
Mat cameraMatrix = Mat.eye(3, 3, CvType.CV_64FC1);
|
||
|
Mat distCoeffs = new Mat(8, 1, CvType.CV_64FC1, new Scalar(0));
|
||
13 years ago
|
|
||
13 years ago
|
Imgproc.undistortPoints(src, dst, cameraMatrix, distCoeffs);
|
||
12 years ago
|
|
||
13 years ago
|
assertEquals(src.size(), dst.size());
|
||
13 years ago
|
for(int i=0; i<src.toList().size(); i++) {
|
||
12 years ago
|
//Log.d("UndistortPoints", "s="+src.get(i)+", d="+dst.get(i));
|
||
|
assertTrue(src.toList().get(i).equals(dst.toList().get(i)));
|
||
13 years ago
|
}
|
||
|
}
|
||
12 years ago
|
|
||
|
|
||
14 years ago
|
public void testWarpAffineMatMatMatSize() {
|
||
13 years ago
|
Mat src = new Mat(3, 3, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 2, 0, 1);
|
||
|
put(1, 0, 6, 4, 3);
|
||
|
put(2, 0, 1, 0, 2);
|
||
|
}
|
||
|
};
|
||
|
Mat M = new Mat(2, 3, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 1, 0, 1);
|
||
|
put(1, 0, 0, 1, 1);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Imgproc.warpAffine(src, dst, M, new Size(3, 3));
|
||
|
|
||
|
truth = new Mat(3, 3, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 0, 0, 0);
|
||
|
put(1, 0, 0, 2, 0);
|
||
|
put(2, 0, 0, 6, 4);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
14 years ago
|
|
||
14 years ago
|
public void testWarpAffineMatMatMatSizeInt() {
|
||
13 years ago
|
Mat src = new Mat(3, 3, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 2, 4, 1);
|
||
|
put(1, 0, 6, 4, 3);
|
||
|
put(2, 0, 0, 2, 2);
|
||
|
}
|
||
|
};
|
||
|
Mat M = new Mat(2, 3, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 1, 0, 0);
|
||
|
put(1, 0, 0, 0, 1);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Imgproc.warpAffine(src, dst, M, new Size(2, 2), Imgproc.WARP_INVERSE_MAP);
|
||
|
|
||
|
truth = new Mat(2, 2, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 6, 4);
|
||
|
put(1, 0, 6, 4);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testWarpAffineMatMatMatSizeIntInt() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testWarpAffineMatMatMatSizeIntIntScalar() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testWarpPerspectiveMatMatMatSize() {
|
||
13 years ago
|
Mat src = new Mat(3, 3, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 2, 4, 1);
|
||
|
put(1, 0, 0, 4, 5);
|
||
|
put(2, 0, 1, 2, 2);
|
||
|
}
|
||
|
};
|
||
|
Mat M = new Mat(3, 3, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 1, 0, 1);
|
||
|
put(1, 0, 0, 1, 1);
|
||
|
put(2, 0, 0, 0, 1);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Imgproc.warpPerspective(src, dst, M, new Size(3, 3));
|
||
|
|
||
|
truth = new Mat(3, 3, CvType.CV_32F) {
|
||
|
{
|
||
|
put(0, 0, 0, 0, 0);
|
||
|
put(1, 0, 0, 2, 4);
|
||
|
put(2, 0, 0, 0, 4);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, dst, EPS);
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testWarpPerspectiveMatMatMatSizeInt() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testWarpPerspectiveMatMatMatSizeIntInt() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testWarpPerspectiveMatMatMatSizeIntIntScalar() {
|
||
13 years ago
|
fail("Not yet implemented");
|
||
14 years ago
|
}
|
||
|
|
||
|
public void testWatershed() {
|
||
|
Mat image = Mat.eye(4, 4, CvType.CV_8UC(3));
|
||
|
Mat markers = new Mat(4, 4, CvType.CV_32SC1, new Scalar(0));
|
||
|
|
||
|
Imgproc.watershed(image, markers);
|
||
13 years ago
|
|
||
|
truth = new Mat(4, 4, CvType.CV_32SC1) {
|
||
|
{
|
||
|
put(0, 0, -1, -1, -1, -1);
|
||
|
put(1, 0, -1, 0, 0, -1);
|
||
|
put(2, 0, -1, 0, 0, -1);
|
||
|
put(3, 0, -1, -1, -1, -1);
|
||
|
}
|
||
|
};
|
||
14 years ago
|
assertMatEqual(truth, markers);
|
||
|
}
|
||
10 years ago
|
|
||
10 years ago
|
public void testGetTextSize() {
|
||
|
String text = "Android all the way";
|
||
|
double fontScale = 2;
|
||
|
int thickness = 3;
|
||
|
int baseLine[] = new int[1];
|
||
14 years ago
|
|
||
10 years ago
|
Imgproc.getTextSize(text, Core.FONT_HERSHEY_SCRIPT_SIMPLEX, fontScale, thickness, null);
|
||
|
Size res = Imgproc.getTextSize(text, Core.FONT_HERSHEY_SCRIPT_SIMPLEX, fontScale, thickness, baseLine);
|
||
|
|
||
|
assertEquals(543.0, res.width);
|
||
|
assertEquals(44.0, res.height);
|
||
|
assertEquals(20, baseLine[0]);
|
||
|
}
|
||
10 years ago
|
|
||
10 years ago
|
public void testCircleMatPointIntScalar() {
|
||
|
Point center = new Point(gray0.cols() / 2, gray0.rows() / 2);
|
||
|
int radius = Math.min(gray0.cols() / 4, gray0.rows() / 4);
|
||
|
Scalar color = new Scalar(128);
|
||
|
|
||
|
Imgproc.circle(gray0, center, radius, color);
|
||
|
|
||
|
assertTrue(0 != Core.countNonZero(gray0));
|
||
|
}
|
||
|
|
||
|
public void testCircleMatPointIntScalarInt() {
|
||
|
Point center = new Point(gray0.cols() / 2, gray0.rows() / 2);
|
||
|
int radius = Math.min(gray0.cols() / 4, gray0.rows() / 4);
|
||
|
Scalar color = new Scalar(128);
|
||
|
|
||
|
Imgproc.circle(gray0, center, radius, color, Core.FILLED);
|
||
|
|
||
|
assertTrue(0 != Core.countNonZero(gray0));
|
||
|
}
|
||
|
|
||
|
public void testCircleMatPointIntScalarIntIntInt() {
|
||
|
Point center = new Point(gray0.cols() / 2, gray0.rows() / 2);
|
||
|
Point center2 = new Point(gray0.cols(), gray0.rows());
|
||
|
int radius = Math.min(gray0.cols() / 4, gray0.rows() / 4);
|
||
|
Scalar color128 = new Scalar(128);
|
||
|
Scalar color0 = new Scalar(0);
|
||
|
|
||
10 years ago
|
Imgproc.circle(gray0, center2, radius * 2, color128, 2, Imgproc.LINE_4, 1/*
|
||
10 years ago
|
* Number
|
||
|
* of
|
||
|
* fractional
|
||
|
* bits
|
||
|
*/);
|
||
|
assertFalse(0 == Core.countNonZero(gray0));
|
||
|
|
||
10 years ago
|
Imgproc.circle(gray0, center, radius, color0, 2, Imgproc.LINE_4, 0);
|
||
10 years ago
|
|
||
|
assertTrue(0 == Core.countNonZero(gray0));
|
||
|
}
|
||
|
|
||
|
public void testClipLine() {
|
||
|
Rect r = new Rect(10, 10, 10, 10);
|
||
|
Point pt1 = new Point(5.0, 15.0);
|
||
|
Point pt2 = new Point(25.0, 15.0);
|
||
|
|
||
10 years ago
|
assertTrue(Imgproc.clipLine(r, pt1, pt2));
|
||
10 years ago
|
|
||
|
Point pt1Clipped = new Point(10.0, 15.0);
|
||
|
Point pt2Clipped = new Point(19.0, 15.0);
|
||
|
assertEquals(pt1Clipped, pt1);
|
||
|
assertEquals(pt2Clipped, pt2);
|
||
|
|
||
|
pt1 = new Point(5.0, 5.0);
|
||
|
pt2 = new Point(25.0, 5.0);
|
||
|
pt1Clipped = new Point(5.0, 5.0);
|
||
|
pt2Clipped = new Point(25.0, 5.0);
|
||
|
|
||
10 years ago
|
assertFalse(Imgproc.clipLine(r, pt1, pt2));
|
||
10 years ago
|
|
||
|
assertEquals(pt1Clipped, pt1);
|
||
|
assertEquals(pt2Clipped, pt2);
|
||
|
}
|
||
10 years ago
|
|
||
10 years ago
|
public void testEllipse2Poly() {
|
||
|
Point center = new Point(4, 4);
|
||
|
Size axes = new Size(2, 2);
|
||
|
int angle = 30;
|
||
|
int arcStart = 30;
|
||
|
int arcEnd = 60;
|
||
|
int delta = 2;
|
||
|
MatOfPoint pts = new MatOfPoint();
|
||
|
|
||
|
Imgproc.ellipse2Poly(center, axes, angle, arcStart, arcEnd, delta, pts);
|
||
|
|
||
|
Point truth[] = {
|
||
|
new Point(5, 6),
|
||
|
new Point(4, 6)
|
||
|
};
|
||
|
assertArrayPointsEquals(truth, pts.toArray(), EPS);
|
||
|
}
|
||
|
|
||
|
public void testEllipseMatPointSizeDoubleDoubleDoubleScalar() {
|
||
|
Point center = new Point(gray0.cols() / 2, gray0.rows() / 2);
|
||
|
Size axes = new Size(2, 2);
|
||
|
double angle = 30, startAngle = 60, endAngle = 90;
|
||
|
|
||
|
Imgproc.ellipse(gray0, center, axes, angle, startAngle, endAngle, colorWhite);
|
||
|
|
||
|
assertTrue(0 != Core.countNonZero(gray0));
|
||
|
}
|
||
|
|
||
|
public void testEllipseMatPointSizeDoubleDoubleDoubleScalarInt() {
|
||
|
Point center = new Point(gray0.cols() / 2, gray0.rows() / 2);
|
||
|
Size axes = new Size(2, 2);
|
||
|
double angle = 30, startAngle = 60, endAngle = 90;
|
||
|
|
||
|
Imgproc.ellipse(gray0, center, axes, angle, startAngle, endAngle, colorWhite, Core.FILLED);
|
||
|
|
||
|
assertTrue(0 != Core.countNonZero(gray0));
|
||
|
}
|
||
|
|
||
|
public void testEllipseMatPointSizeDoubleDoubleDoubleScalarIntIntInt() {
|
||
|
Point center = new Point(gray0.cols() / 2, gray0.rows() / 2);
|
||
|
Size axes = new Size(2, 2);
|
||
|
Point center2 = new Point(gray0.cols(), gray0.rows());
|
||
|
Size axes2 = new Size(4, 4);
|
||
|
double angle = 30, startAngle = 0, endAngle = 30;
|
||
|
|
||
10 years ago
|
Imgproc.ellipse(gray0, center, axes, angle, startAngle, endAngle, colorWhite, Core.FILLED, Imgproc.LINE_4, 0);
|
||
10 years ago
|
|
||
|
assertTrue(0 != Core.countNonZero(gray0));
|
||
|
|
||
10 years ago
|
Imgproc.ellipse(gray0, center2, axes2, angle, startAngle, endAngle, colorBlack, Core.FILLED, Imgproc.LINE_4, 1);
|
||
10 years ago
|
|
||
|
assertEquals(0, Core.countNonZero(gray0));
|
||
|
}
|
||
|
|
||
|
public void testEllipseMatRotatedRectScalar() {
|
||
|
int matSize = 10;
|
||
|
Mat gray0 = Mat.zeros(matSize, matSize, CvType.CV_8U);
|
||
|
Point center = new Point(matSize / 2, matSize / 2);
|
||
|
Size size = new Size(matSize / 4, matSize / 2);
|
||
|
RotatedRect box = new RotatedRect(center, size, 45);
|
||
|
|
||
|
Imgproc.ellipse(gray0, box, new Scalar(1));
|
||
|
|
||
|
final byte[] truth = new byte[] {
|
||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
|
0, 0, 0, 0, 0, 0, 1, 1, 0, 0,
|
||
|
0, 0, 0, 0, 1, 1, 0, 1, 0, 0,
|
||
|
0, 0, 0, 0, 1, 0, 1, 0, 0, 0,
|
||
|
0, 0, 0, 1, 0, 1, 1, 0, 0, 0,
|
||
|
0, 0, 0, 1, 1, 0, 0, 0, 0, 0,
|
||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
|
||
|
|
||
|
assertMatEqual(new Mat(matSize, matSize, CvType.CV_8U) {
|
||
|
{
|
||
|
put(0, 0, truth);
|
||
|
}
|
||
|
}, gray0);
|
||
|
}
|
||
|
|
||
|
public void testEllipseMatRotatedRectScalarInt() {
|
||
|
Point center = new Point(matSize / 2, matSize / 2);
|
||
|
Size size = new Size(matSize / 4, matSize / 2);
|
||
|
RotatedRect box = new RotatedRect(center, size, 45);
|
||
|
|
||
|
Imgproc.ellipse(gray0, box, new Scalar(1), Core.FILLED);
|
||
|
Imgproc.ellipse(gray0, box, new Scalar(0));
|
||
|
|
||
|
assertTrue(0 < Core.countNonZero(gray0));
|
||
|
}
|
||
|
|
||
|
public void testEllipseMatRotatedRectScalarIntInt() {
|
||
|
Point center = new Point(matSize / 2, matSize / 2);
|
||
|
Size size = new Size(2, matSize * 2 / 3);
|
||
|
RotatedRect box = new RotatedRect(center, size, 20);
|
||
|
|
||
10 years ago
|
Imgproc.ellipse(gray0, box, new Scalar(9), 1, Imgproc.LINE_AA);
|
||
|
Imgproc.ellipse(gray0, box, new Scalar(0), 1, Imgproc.LINE_4);
|
||
10 years ago
|
|
||
|
assertTrue(0 < Core.countNonZero(gray0));
|
||
|
}
|
||
10 years ago
|
|
||
10 years ago
|
public void testPolylinesMatListOfListOfPointBooleanScalar() {
|
||
|
Mat img = gray0;
|
||
|
List<MatOfPoint> polyline = new ArrayList<MatOfPoint>();
|
||
|
polyline.add(new MatOfPoint(new Point(1, 1), new Point(7, 1), new Point(7, 6), new Point(1, 6)));
|
||
|
|
||
|
Imgproc.polylines(img, polyline, true, new Scalar(100));
|
||
|
|
||
|
assertEquals(22, Core.countNonZero(img));
|
||
|
|
||
|
Imgproc.polylines(img, polyline, false, new Scalar(0));
|
||
|
|
||
|
assertEquals(4, Core.countNonZero(img));
|
||
|
}
|
||
|
|
||
|
public void testPolylinesMatListOfListOfPointBooleanScalarInt() {
|
||
|
Mat img = gray0;
|
||
|
List<MatOfPoint> polyline = new ArrayList<MatOfPoint>();
|
||
|
polyline.add(new MatOfPoint(new Point(1, 1), new Point(7, 1), new Point(7, 6), new Point(1, 6)));
|
||
|
|
||
|
Imgproc.polylines(img, polyline, true, new Scalar(100), 2);
|
||
|
|
||
|
assertEquals(62, Core.countNonZero(img));
|
||
|
}
|
||
|
|
||
|
public void testPolylinesMatListOfListOfPointBooleanScalarIntIntInt() {
|
||
|
Mat img = gray0;
|
||
|
List<MatOfPoint> polyline1 = new ArrayList<MatOfPoint>();
|
||
|
polyline1.add(new MatOfPoint(new Point(1, 1), new Point(7, 1), new Point(7, 6), new Point(1, 6)));
|
||
|
List<MatOfPoint> polyline2 = new ArrayList<MatOfPoint>();
|
||
|
polyline2.add(new MatOfPoint(new Point(2, 2), new Point(14, 2), new Point(14, 12), new Point(2, 12)));
|
||
|
|
||
10 years ago
|
Imgproc.polylines(img, polyline1, true, new Scalar(100), 2, Imgproc.LINE_8, 0);
|
||
10 years ago
|
|
||
|
assertTrue(Core.countNonZero(img) > 0);
|
||
|
|
||
10 years ago
|
Imgproc.polylines(img, polyline2, true, new Scalar(0), 2, Imgproc.LINE_8, 1);
|
||
10 years ago
|
|
||
|
assertEquals(0, Core.countNonZero(img));
|
||
|
}
|
||
10 years ago
|
|
||
10 years ago
|
public void testPutTextMatStringPointIntDoubleScalar() {
|
||
|
String text = "Hello World";
|
||
|
Size labelSize = new Size(175, 22);
|
||
|
Mat img = new Mat(20 + (int) labelSize.height, 20 + (int) labelSize.width, CvType.CV_8U, colorBlack);
|
||
|
Point origin = new Point(10, labelSize.height + 10);
|
||
|
|
||
|
Imgproc.putText(img, text, origin, Core.FONT_HERSHEY_SIMPLEX, 1.0, colorWhite);
|
||
|
|
||
|
assertTrue(Core.countNonZero(img) > 0);
|
||
|
// check that border is not corrupted
|
||
|
Imgproc.rectangle(img, new Point(11, 11), new Point(labelSize.width + 10, labelSize.height + 10), colorBlack, Core.FILLED);
|
||
|
assertEquals(0, Core.countNonZero(img));
|
||
|
}
|
||
|
|
||
|
public void testPutTextMatStringPointIntDoubleScalarInt() {
|
||
|
String text = "Hello World";
|
||
|
Size labelSize = new Size(176, 22);
|
||
|
Mat img = new Mat(20 + (int) labelSize.height, 20 + (int) labelSize.width, CvType.CV_8U, colorBlack);
|
||
|
Point origin = new Point(10, labelSize.height + 10);
|
||
|
|
||
|
Imgproc.putText(img, text, origin, Core.FONT_HERSHEY_SIMPLEX, 1.0, colorWhite, 2);
|
||
|
|
||
|
assertTrue(Core.countNonZero(img) > 0);
|
||
|
// check that border is not corrupted
|
||
|
Imgproc.rectangle(img, new Point(10, 10), new Point(labelSize.width + 10 + 1, labelSize.height + 10 + 1), colorBlack, Core.FILLED);
|
||
|
assertEquals(0, Core.countNonZero(img));
|
||
|
}
|
||
|
|
||
|
public void testPutTextMatStringPointIntDoubleScalarIntIntBoolean() {
|
||
|
String text = "Hello World";
|
||
|
Size labelSize = new Size(175, 22);
|
||
|
|
||
|
Mat img = new Mat(20 + (int) labelSize.height, 20 + (int) labelSize.width, CvType.CV_8U, colorBlack);
|
||
|
Point origin = new Point(10, 10);
|
||
|
|
||
10 years ago
|
Imgproc.putText(img, text, origin, Core.FONT_HERSHEY_SIMPLEX, 1.0, colorWhite, 1, Imgproc.LINE_8, true);
|
||
10 years ago
|
|
||
|
assertTrue(Core.countNonZero(img) > 0);
|
||
|
// check that border is not corrupted
|
||
|
Imgproc.rectangle(img, new Point(10, 10), new Point(labelSize.width + 9, labelSize.height + 9), colorBlack, Core.FILLED);
|
||
|
assertEquals(0, Core.countNonZero(img));
|
||
|
}
|
||
11 years ago
|
}
|