Home | History | Annotate | Download | only in test

Lines Matching refs:contours2

775         List<MatOfPoint> contours2 = new ArrayList<MatOfPoint>();
782 Imgproc.findContours(img2, contours2, hierarchy, Imgproc.RETR_EXTERNAL, Imgproc.CHAIN_APPROX_SIMPLE, new Point(3, 5));
784 assertEquals(contours.size(), contours2.size());
785 assertMatEqual(contours.get(0), contours2.get(0));