Explorar el Código

合并opencv代码

syh hace 5 años
padre
commit
4b6d48b4b9

+ 0 - 1
jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/opencv/CornerCheck.java

@@ -42,7 +42,6 @@ public class CornerCheck {
             Mat gray = new Mat();
             //灰度
             Imgproc.cvtColor(src, gray, Imgproc.COLOR_RGB2GRAY);
-            Imgcodecs.imwrite("D:\\data\\gray.jpg", gray);
             Mat binary = new Mat();
             //二值化
             Imgproc.threshold(gray, binary, 1, 255, Imgproc.THRESH_TOZERO);