Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
FPGA Filter
Rating: 4.3 out of 5(22 ratings)
195 students

FPGA Filter

analysis, coding and simulation
Created byHUI HU
Last updated 4/2021
English

What you'll learn

  • FPGA filter design and simulation

Course content

3 sections11 lectures2h 1m total length
  • FPGA Mean (Average) Filter 01 -- Introduction5:03

    Learn how an FPGA mean filter computes an average by summing data and dividing by count, removing min and max to aid noise reduction in ADC, image, and audio data.

  • FPGA Mean (Average) Filter 02 -- Coding11:32
  • FPGA Mean (Average) Filter 03 -- Simulation12:12

    Learn to simulate an FPGA mean (average) filter using a test bench, clock, and ModelSim workflow to verify input data 1 through 10 and the resulting mean.

Requirements

  • verilog basic knowledge

Description

This series of lessons will focus on the FPGA filter algorithm design and simulation. It currently includes three parts (It might include more in the future):

(1) FPGA Mean (Average) Filter:

The Mean filter, or average filter is windowed filter of linear class, that smoothes signal (image). The filter works as low-pass one. The basic idea behind filter is for any element of the signal (image) take an average across its neighborhood.

(2) FPGA Median Filter:

The median filter is a non-linear digital filtering technique, often used to remove noise from an image or signal. Such noise reduction is a typical pre-processing step to improve the results of later processing (for example, edge detection on an image). Median filtering is very widely used in digital image processing because, under certain conditions, it preserves edges while removing noise, also having applications in signal processing.

The main idea of the median filter is to run through the signal entry by entry, replacing each entry with the median of neighboring entries. The pattern of neighbors is called the "window", which slides, entry by entry, over the entire signal.

(3) FPGA Gaussian Filter:

In electronics and signal processing, a Gaussian filter is a filter whose impulse response is a Gaussian function (or an approximation to it, since a true Gaussian response is physically unrealizable as it has infinite support). Gaussian filters have the properties of having no overshoot to a step function input while minimizing the rise and fall time. This behavior is closely connected to the fact that the Gaussian filter has the minimum possible group delay. It is considered the ideal time domain filter, just as the sinc is the ideal frequency domain filter. These properties are important in areas such as oscilloscopes and digital telecommunication systems.

Mathematically, a Gaussian filter modifies the input signal by convolution with a Gaussian function; this transformation is also known as the Weierstrass transform.

Who this course is for:

  • FPGA learner