影象過濾可以讓您將各種效果應用於影象。 在本章和後面的三章中,我們將討論各種過濾器操作,如雙邊過濾器,盒式過濾器,SQR盒式過濾器和過濾器2D。
雙邊過濾器操作將雙邊影象應用於過濾器。可以使用imgproc
類的bilateralFilter()
方法在影象上執行此操作。 以下是此方法的語法。
bilateralFilter(src, dst, d, sigmaColor, sigmaSpace, borderType)
該方法接受以下引數 -
Mat
物件。Mat
物件。sigma
的整數型別變數。sigma
的整型變數。以下程式演示如何對影象執行雙邊濾鏡操作。
package com.yiibai.filtering;
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;
public class BilateralFilter {
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/sample2.jpg\\\\\\\";
Mat src = Imgcodecs.imread(file);
// Creating an empty matrix to store the result
Mat dst = new Mat();
// Applying Bilateral filter on the Image
Imgproc.bilateralFilter(src, dst, 15, 80, 80, Core.BORDER_DEFAULT);
// Writing the image
Imgcodecs.imwrite(\\\\\\\"F:/worksp/opencv/images/sample2bilateralfilter.jpg\\\\\\\", dst);
System.out.println(\\\\\\\"Image Processed\\\\\\\");
}
}
假定以下是上述程式中指定的輸入影象sample2.jpg
。
執行上面範例程式碼,得到以下結果 -