Spatial filtering

0.0(0)
studied byStudied by 2 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/17

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards

Filter

Removes undesirable impurities such as noise

2
New cards

Convolution

Given pixel (i, j), the center of the filter/mask is lined up, and the filters in the sub image are multiplied with the corresponding coefficients in the filter. This yields a matrix which is then simplified to a single value which replaces the center pixel

3
New cards

Padding

Creating new values for pixels outside of the image boundary. Assumed to be 0, NN, or mirrored

4
New cards

Mean filter

Coefficients are all 1, the whole image is divided by the number of pixels in the filter (3×3 is divided by 9)

5
New cards

Weighted mean filter

Coefficients aren’t all 1’s and the image is divided by the total weight for normalization

6
New cards

Median filter

Non-linear filter type, a sliding window is chosen and is placed on the image at position (i, j). All pixel values under the filter are collected, median is computed and given to (i, j). Commonly used for salt and pepper noise

7
New cards

Max/min filter

Takes the max/min from filter space and replaces the center pixel with that. Max is used for lightening and min is used for darkening

8
New cards

Edges

Set of points in an image where there is a change of intensity

9
New cards

First derivative edge detection

Has a peak at the edge which decreases afterwards

10
New cards

Second derivative edge detection

Positive before the edge and is then negative afterwards. 0 at the edge

11
New cards

Zero-crossing

The second derivative changing sign when crossing the edge

12
New cards

Sobel filter

First derivative filter, used to find horizontal and vertical edges. Sum of the coefficients is 0

13
New cards

Prewitt filter

First derivative filter, doesn’t reduce noise, sum is 0

14
New cards

Canny filter

First derivative filter, 3 parameters to detect edges (standard deviation, threshold values t1, and t2)

15
New cards

Laplacian filter

Second derivative filter, adds noise

16
New cards

Laplacian of Gaussian filter

Second derivative filter, offsets the noise of the laplacian

17
New cards

Frangi filter

Shape detecting filter, used to detect vessel like objects. Uses eigen values on second derivative

18
New cards