天天看點

學習圖像處理知識---Emgu3.4 image類學習(五)

圖像形态學操作:

膨脹,腐蝕,開啟和閉合。一般用于灰圖圖像的應用,識别MARK。當然彩色圖檔也可以。

public Image<TColor, TDepth> Erode(  //腐蝕
	int iterations
)      
public Image<TColor, TDepth> Dilate(
	int iterations
)//膨脹      
學習圖像處理知識---Emgu3.4 image類學習(五)

把灰圖pictureBox2.Image = YUAN.Convert<Gray, Byte>().Erode(5).ToBitmap(); //腐蝕

pictureBox2.Image = YUAN.Convert<Gray, Byte>().Dilate(5).ToBitmap();//膨脹

學習圖像處理知識---Emgu3.4 image類學習(五)
學習圖像處理知識---Emgu3.4 image類學習(五)

先腐蝕後膨脹稱為開(open),即OPEN(X)=D(E(X)),消除小的雜質。

先膨脹後腐蝕稱為閉(close),即CLOSE(X)=E(D(X),)能夠填平小湖。