OpenCV擴張
侵蝕和擴張是兩種形態操作。 顧名思義,形態操作是根據形狀對圖像進行處理的一組操作。
基於給定的輸入圖像,開發了「結構元素」。這可以在兩個程序中的任何一箇中完成。 這些目的是消除噪音,解決不完善之處,使圖像清晰。
擴張
這個過程遵循與特定形狀(如正方形或圓形)的某些內核的卷積。這個內核有一個錨點,表示它的中心。
這個內核重疊在圖片上來計算最大像素值。 經過計算,圖片被替換爲中心的錨點。 通過這個程序,明亮區域的面積變大,因此圖像尺寸增加。
例如,白色或明亮的物體的大小增加,而黑色或暗色的物體的大小減小。
可以使用imgproc
類的dilate()
方法對圖像執行擴張操作。以下是此方法的語法。
dilate(src, dst, kernel)
該方法接受以下參數 -
- src - 表示此操作的源(輸入圖像)的
Mat
對象。 - dst - 表示此操作的目標(輸出圖像)的
Mat
對象。 - kernel - 表示卷積核的
Mat
對象。
示例
可以使用getStructureElement()
方法來準備內核矩陣。該方法接受一個表示morph_rect
類型的整數和一個Size
類型的對象。
Imgproc.getStructuringElement(int shape, Size ksize);
以下程序演示如何對給定圖像執行擴張操作。
package com.yiibai.filtering;
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.core.Size;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;
public class DilateTest {
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();
// Preparing the kernel matrix object
Mat kernel = Imgproc.getStructuringElement(Imgproc.MORPH_RECT,
new Size((2*2) + 1, (2*2)+1));
// Applying dilate on the Image
Imgproc.dilate(src, dst, kernel);
// Writing the image
Imgcodecs.imwrite(\"F:/worksp/opencv/images/sample2dilation.jpg\", dst);
System.out.println(\"Image Processed\");
}
}
假定以下是上述程序中指定的輸入圖像sample2.jpg
。
執行上面示例代碼,得到以下結果 -