0% found this document useful (0 votes)
10 views2 pages

Midterm Exam on Image Processing Concepts

The document is a sample midterm exam consisting of various questions related to image processing concepts, including true/false statements, short answer questions, and practical applications. Topics covered include median filters, the Hough transform, sensor parameters, edge detection, and the Harris corner detector. The exam format is closed book and is designed to assess students' understanding of key principles in the field.

Uploaded by

jedix96261
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views2 pages

Midterm Exam on Image Processing Concepts

The document is a sample midterm exam consisting of various questions related to image processing concepts, including true/false statements, short answer questions, and practical applications. Topics covered include median filters, the Hough transform, sensor parameters, edge detection, and the Harris corner detector. The exam format is closed book and is designed to assess students' understanding of key principles in the field.

Uploaded by

jedix96261
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

SAMPLE MIDTERM for reference

Midterm Exam

Time Allowed: 1 hour Format: Closed book

Name ___________________ Student #: _________________________

1. (20 pts) For each of the following statements, indicate whether it is true or false.
Give a brief reason only when the question requires.

T F Median filter is effective for eliminating “salt and pepper” noise.

T F Median filter is a linear filter.

T F In the human eye, the cone cells are sensitive to color, and the rod cells are
sensitive to the level of illumination.

T F The Hough transform of a point in the image plane is a point in the Hough
space.

T F The computational complexity of a Hough transform increases


exponentially with the number of unknown parameters in the geometric
shape that is being detected. Give a brief reason.

T F Corners found by the Harris corner detector tend to be unaffected from the
aperture effect. Give a brief reason.

2. (12 pts) Short answer questions

1) Explain the factors that determine what size of bin to use in the Hough transform ?

2) A simple relationship between the image and its histogram is illustrated in the
following figure. Give any two methods which you can use to enhance the
contrast between the coin and the background.
3. (10pt) Some characteristic parameters of a sensor are illustrated in the following
figure. Briefly explain what each of them mean.

4. (10 pts) Consider the simple case of a step edge. What is the response of the first
derivative to step edges ? What is the response of the second derivative to step edges
(draw some diagram to illustrate your answers).

5. (10 pts) Consider the following image:


5 2 4 1 2 4 2 1
5 1 1 1 5 5 5 4
2 1 1 1 5 5 5 5
3 1 1 1 4 5 5 2

Segment the image based on the histogram, considering two regions. Show the
method, including the histogram and the two regions in the image.

6. (20 pts) Briefly describe the main steps of Canny edge detector. Discuss the factors
or parameters that could affect the detection and location of edges.

7. (18 pts) Briefly discuss the principle of Harris corner detector (draw some diagram to
illustrate your answers).

Common questions

Powered by AI

The Harris corner detector identifies points where local changes in intensity value differ significantly in all directions, which are robust indicators of corners. This robustness means corners are typically less affected by the aperture effect where only one-dimensional features are detectable.

The computational complexity of the Hough transform increases exponentially with the number of parameters to be estimated. This is because the number of dimensions in the parameter space increases with more parameters, leading to increased computational effort to find peaks in this space.

The size of bins in the Hough transform is determined by the trade-off between resolution and noise tolerance. Smaller bins offer higher resolution for parameter estimation but are more sensitive to noise, while larger bins reduce noise effects but decrease resolution. The choice impacts both computational efficiency and the accuracy of detected shapes.

The Canny edge detector involves noise reduction with Gaussian blurring, gradient computation, non-maximum suppression, and hysteresis thresholding. Parameters like the Gaussian kernel size affect noise reduction and edge sensitivity, while thresholding values impact the linking of edge segments.

The Harris corner detector relies on the auto-correlation matrix, which measures intensity shifts in different directions. Corners are identified where this matrix has large eigenvalues, indicating significant intensity changes in multiple directions. This makes it effective for detecting corners that are invariant to image transformations.

Segmenting an image based on its histogram involves identifying peaks and valleys that represent different regions of intensity. By choosing a threshold between peaks, pixels are divided into two segments. This method enhances object-background separation and aids in image analysis.

Two methods to enhance contrast in images are histogram equalization and contrast stretching. Histogram equalization redistributes the intensity values to span the entire range, enhancing contrast, while contrast stretching scales pixel values to create more distinct differences between object and background.

The median filter is effective for 'salt and pepper' noise as it replaces each pixel's value with the median value within a neighborhood, which effectively removes the outlier noise pixels while preserving edges better than linear filters. Linear filters, in contrast, average pixel values, which can blur edges and may not effectively remove 'salt and pepper' noise.

In the image plane, each point maps to a curve in Hough space, with intersections of curves indicating potential shapes in the image. This transformation localizes parameters of the detected feature, allowing for consistent and precise shape recognition despite noise or partial occlusion.

The first derivative at a step edge results in a peak, indicating the location of the edge, while the second derivative produces a zero-crossing at the edge location, which is used to more precisely locate the edge. This response is critical for detecting and localizing edges in image processing.

You might also like