5.1
spatial filtering需要三個步驟:
1.將遮罩至於指定像素上.
把mask放在current pixel上。
2. Form all products of filter elements with the corresponding elements of the neighborhood.
將濾波器的所有元素與鄰域相對應的像素相乘.
3. Add all the products.
乘法的所有結果相加.
5.2
Ignore the edges因為輸出的像素會比原圖來的小,所以會造成影像失真。
Pad with zeros假定所有外部影像皆設為0,所以他會和原圖一樣大,但會造
成影像有多餘的東西。
5.3:
函數filter2可以執行線性濾波運算
filter2(filter,image,'same') 產生與原始矩陣image同樣大小的矩陣,邊緣補0.
filter2(filter,image,'valid') 只對遮罩能夠完全覆蓋的像素進行運算,結果小於原始影像.
filter2(filter,image,'full') 會得到比原始影像大的結果.除了補0,相交部份執行濾波運算.
average會模糊影像,邊緣會變的不清楚,越大的average,影像越不清楚.
未完待續
===================內容龐大的第五章====================
沒有留言:
張貼留言