使用索貝爾(sobel)操作,可以在水平和垂直方向上檢測影象的邊緣。可以使用sobel()
方法在影象上應用sobel
操作。以下是這種方法的語法 -
Sobel(src, dst, ddepth, dx, dy)
該方法接受以下引數 -
Mat
類的物件。Mat
類的物件。-1
)。x
導數的整數變數(0
或1
)。y
導數的整數變數(0
或1
)。範例
以下程式演示如何在給定影象上執行Sobel
操作。
package com.yiibai.sobelderivatives;
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 ="F:/worksp/opencv/images/sample3.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("F:/worksp/opencv/images/sample3sobel_output.jpg", dst);
System.out.println("Image processed");
}
}
假定以下是上述程式中指定的輸入影象sample3.jpg
。
執行上面範例程式碼,得到以下結果 -
將不同的值傳遞給最後一個引數(dx
和dy
),它的值在0
和1
之間,會得到不同的輸出。