Home | History | Annotate | Download | only in test

Lines Matching full:hull

425         MatOfInt hull = new MatOfInt();
427 Imgproc.convexHull(points, hull);
432 assertMatEqual(expHull, hull, EPS);
445 MatOfInt hull = new MatOfInt();
447 Imgproc.convexHull(points, hull, true);
452 assertMatEqual(expHull, hull, EPS);
465 MatOfInt hull = new MatOfInt();
466 Imgproc.convexHull(points, hull);
469 Imgproc.convexityDefects(points, hull, convexityDefects);