related moved enums

This commit is contained in:
Suleyman TURKMEN
2018-08-25 21:50:50 +03:00
parent 335e61dc47
commit 6d165dae5e
4 changed files with 6 additions and 9 deletions
+2 -2
View File
@@ -11,8 +11,8 @@ public class PhotoTest extends OpenCVTestCase {
public void testInpaint() {
Point p = new Point(matSize / 2, matSize / 2);
Imgproc.circle(gray255, p, 2, colorBlack, Core.FILLED);
Imgproc.circle(gray0, p, 2, colorWhite, Core.FILLED);
Imgproc.circle(gray255, p, 2, colorBlack, Imgproc.FILLED);
Imgproc.circle(gray0, p, 2, colorWhite, Imgproc.FILLED);
Photo.inpaint(gray255, gray0, dst, 3, Photo.INPAINT_TELEA);