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

執行上面範例程式碼,得到以下結果 -