我写:
Mat sobel = new Mat();
Imgproc.Sobel(threshold,sobel, sobel.depth(), 1, 0);
Highgui.imwrite("Sobel.jpg", sobel);
sobel.create( sobel.height(),sobel.width(), CvType.CV_8UC(2));
System.out.println(sobel.dump());
//display matrix
然后我试图从sobel获取一个数组。但我很困惑如何从 Mat 中获取价值并放入 Array。