Lecture 4 pt 2 Flashcards

1
Q

What are local (neighbourhood) operations?

A

Image operations that consider the neighbouring pixels of a coordinate. (The rectangle around a central pixlel known as the Kernal or Filter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a linear filter

A

A linear filter is the most common neighbourhood filter.
It’s output pixel’s value is determined as a weighted sum of the input pixel values. It also uses a convolution operator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is padding?

A

Deals with boundary effects. There are 3 types of padding:
1. Zero
2. Constant
3. Clamp
4. (Cyclic) wrap
5. Mirror
6. Extend

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is Zero Padding?

A

Zero Padding is when all pixels outside of the source image are set to 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is Constant padding?

A

Sets all pixels outside of the source image to a specified border value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is clamp padding?

A

Clamp padding is having the edge pixels repeat indefinitely.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is cyclic / wrap padding?

A

Loop around the image in a toroidal configuration.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is Mirror padding?

A

Mirror padding reflects pixels across the image edge

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is extend padding?

A

Extend the signal by subtracting the mirrored version of the signal from the edge pixel value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is Box Filtering?

A

Box filtering is a type of linear filtering. It averages the pixel values in a k x k window. Each pixel is computed as the average of the surrounding pixels.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is Gaussian Filtering?

A

Gaussian Filtering is a type of linear filtering.
It takes a square array of pixels where the pixel values correspond to the values of the Gaussian Curve (Bell Curve)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are Low-Pass Filters

A

Low-Pass filters are employed to remove high spatial frequency noise from a digital image.
They usually employ moving window operators which affects one pixel of the image at a time, changing its value by some function of a local region (window) of pixels.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are non-linear filters?

A

Similar to linear filters, but instead of using the spatial mask in the convolution process, the mask is used to obtain the neighbouring pixel values, and then ordering mechanisms produce the output pixel.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly