📅  最后修改于: 2020-11-23 03:46:37             🧑  作者: Mango
使用sobel操作,您可以在水平和垂直方向上检测图像的边缘。您可以使用sobel()方法对图像进行sobel操作。以下是此方法的语法-
Sobel(src, dst, ddepth, dx, dy)
此方法接受以下参数-
src – Mat类的一个对象,代表源(输入)图像。
dst – Mat类的一个对象,代表目标(输出)图像。
ddepth-代表图像深度的整数变量(-1)
dx-表示x导数的整数变量。 (0或1)
dy-表示y导数的整数变量。 (0或1)
以下程序演示了如何在给定图像上执行Sobel操作。
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;
public class SobelTest {
public static void main(String args[]) {
// Loading the OpenCV core library
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
// Reading the Image from the file and storing it in to a Matrix object
String file ="E:/OpenCV/chap16/sobel_input.jpg";
Mat src = Imgcodecs.imread(file);
// Creating an empty matrix to store the result
Mat dst = new Mat();
// Applying sobel on the Image
Imgproc.Sobel(src, dst, -1, 1, 1);
// Writing the image
Imgcodecs.imwrite("E:/OpenCV/chap16/sobel_output.jpg", dst);
System.out.println("Image processed");
}
}
假设以下是上述程序中指定的输入图像sobel_input.jpg 。
在执行程序时,您将获得以下输出-
Image Processed
如果打开指定的路径,则可以观察到输出图像,如下所示:
在将不同的值传递到参数(dx和dy)(在0和1之间)时,您将获得不同的输出-
// Applying sobel on the Image
Imgproc.Sobel(src, dst, -1, 1, 1);
下表列出了方法Sobel()的变量dx和dy的各种值以及它们各自的输出。
X-derivative | Y-derivative | Output |
---|---|---|
0 | 1 | |
1 | 0 | |
1 | 1 |