Course Content
Computer Vision Course Outline
Computer Vision Course Outline
Low-pass and High-pass Filters
One of the key benefits of the Fourier Transformation is it enables us to do high-pass and low-pass filtering.
After we apply the Fourier Transformation:
we need to create a filtering mask
Low-Pass Filtering (Blurring)
A low-pass filter removes high-frequency components, which results in a blurred image. Low-pass mask:
High-Pass Filtering (Edge Detection)
A high-pass filter removes low-frequency components and enhances edges. High-pass mask:
Applying the filter
After creating the mask, we must apply a filter and transform our photo back to the spatial domain:
Swipe to start coding
In this task, you must apply both types of filters to a sheep.
- Low-pass filter: remove everything out of the 20x20 square in the center;
- High-pass filter: remove everything in the 20x20 square in the center.
Solution
Thanks for your feedback!
Low-pass and High-pass Filters
One of the key benefits of the Fourier Transformation is it enables us to do high-pass and low-pass filtering.
After we apply the Fourier Transformation:
we need to create a filtering mask
Low-Pass Filtering (Blurring)
A low-pass filter removes high-frequency components, which results in a blurred image. Low-pass mask:
High-Pass Filtering (Edge Detection)
A high-pass filter removes low-frequency components and enhances edges. High-pass mask:
Applying the filter
After creating the mask, we must apply a filter and transform our photo back to the spatial domain:
Swipe to start coding
In this task, you must apply both types of filters to a sheep.
- Low-pass filter: remove everything out of the 20x20 square in the center;
- High-pass filter: remove everything in the 20x20 square in the center.
Solution
Thanks for your feedback!