使用sobel操作,您可以在水平和垂直方向檢測圖像的邊緣。您可以使用sobel()方法對圖像應用sobel操作。下面是這個方法的語法−
Sobel(src, dst, ddepth, dx, dy)
此方法接受以下參數&負;
src−類的對象表示源(輸入)圖像。
dst−類的對象表示目標(輸出)圖像。
ddepth−表示圖像深度的整數變量(-1)
dx−表示x-導數的整數變量。(0或1)
dy−表示y-導數的整數變量。(0或1)
Example
下面的程序演示如何對給定的圖像執行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。
Output
在執行程序時,您將得到以下輸出&負;
Image Processed
如果您打開指定的路徑,您可以按以下方式觀察輸出圖像−
sobel Variants
在將不同的值傳遞給最後一個參數(dx和dy)(介於0和1之間)時,您將得到不同的輸出&負;
// Applying sobel on the Image Imgproc.Sobel(src, dst, -1, 1, 1);
下表列出了Sobel()方法的變量dx和dy及其各自輸出的各種值。