OpenCV雙邊濾鏡

圖像過濾可以讓您將各種效果應用於圖像。 在本章和後面的三章中,我們將討論各種過濾器操作,如雙邊過濾器,盒式過濾器,SQR盒式過濾器和過濾器2D。

雙邊過濾器

雙邊過濾器操作將雙邊圖像應用於過濾器。可以使用imgproc類的bilateralFilter()方法在圖像上執行此操作。 以下是此方法的語法。

bilateralFilter(src, dst, d, sigmaColor, sigmaSpace, borderType)

該方法接受以下參數 -

  • src - 表示此操作的源(輸入圖像)的Mat對象。
  • dst - 表示此操作的目標(輸出圖像)的Mat對象。
  • d - 代表像素鄰域直徑的整數類型變量。
  • sigmaColor - 表示顏色空間中的過濾器sigma的整數類型變量。
  • sigmaSpace - 表示座標空間中過濾器sigma的整型變量。
  • borderType - 表示所用邊框類型的整數對象。

示例

以下程序演示如何對圖像執行雙邊濾鏡操作。

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
OpenCV雙邊濾鏡

執行上面示例代碼,得到以下結果 -
OpenCV雙邊濾鏡