• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/19

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

19 Cards in this Set

  • Front
  • Back
Algorithms are fundamental to digital image processing. These operations can be divided into four categories:
▫ operations based on the image histogram,
▫ on simple mathematics,
▫ on convolution, and
▫ on mathematical morphology.
what are the two types of filters?
linear and non-linear filters
What is meant by Linear Filters?
Filtering in which the value of an output
pixel is a linear combination of the
values of the pixels in the input pixel’s
neighbourhood.
▫ Accomplished through technique called
Convolution.
What is Convolution in Processing
Images?
▫ Technique of computing the value of an
output pixel as a weighted sum of its
neighbouring pixels.
▫ Matrix of weights is called the
Convolution Kernel or Filter.
How is Convolution done?
1. Slide centre element of 
kernel to top of computing 
element of A.
2. Multiply each weight in the 
rotated kernel by the pixel of 
A.
3. Sum up the individual 
product in above step.
4. Prescribe onto target pixel
1. Slide centre element of
kernel to top of computing
element of A.
2. Multiply each weight in the
rotated kernel by the pixel of
A.
3. Sum up the individual
product in above step.
4. Prescribe onto target pixel
convolution
eg
eg
eg of a 3X3 mean kernel
Often a 3×3 square convolution kernel is used although sometimes 
5x5 square kernel is also used.
Often a 3×3 square convolution kernel is used although sometimes
5x5 square kernel is also used.
what does the mean filter do?
Smoothes images by reducing the amount of intensity variation
between one pixel and the next. (▫ Smoothing an image not only reduce the noise, but also the finescaled image details because they also blocked high frequencies)
mean filters make the images more ____.
blurry
What does a median filter do?
• Medial Filter preserves useful detail in the image
• Median filter is a nonlinear filter.
▫ Median is calculated by first sorting all the pixel values.
▫ Centre pixel is replaced with the median, or centre value present
among its neighbours
A common way to reduce noise is _______.
averaging
• Low pass filtering can suppress _____.
noise
High pass filtering can enhance ______.
detail
Noise smoothing is _____
(low pass)
Elimination of image defects (artifacts) by using _____.
(median filtering)
Edge detection is a _____-.
(high pass, derivative filters)
Image enhancement (image restoration) is a ________.
(high boost filtering)
• One example of non-linear spatial filters is a ______filter it is good for removing impulse noise from
images
median
filter
How does the median filter work?
The filter cleans up images with bright noise spikes, because the
bright pixels tend to end up at the top of the ascending order of
pixels in each pixel group
• As a result the bright spikes are replaced by the median filter on an
image corrupted by impulse noise