Computer Vision Section Questions
Computer Vision Section Questions
1) _____ is considered high-level image processing out of which a machine/computer/software intends to decipher
the physical contents of an image or a sequence of images.
(Image processing - Computer vision - Computer graphics)
Answer: Computer vision
4) _____ stretches the histogram of an image in order to have the intensity range of the image fill the entire
available range.
(imadjust(I) - imstretch(I) - histeq(I))
Answer: imadjust(I)
5) ____ is the simplest method of image segmentation. It replaces each pixel in an image by comparing it with
some fixed constant.
(Edge detection - Region growing - Thresholding)
Answer: Thresholding
6) _____ is a device or process that removes from a signal some unwanted component or feature.
(Segmentation - Filter - Transformation)
Answer: Filter
7) Is the average filter optimal for this type of noise? if not, filter the image with the optimal one.
No
I = medfilt2(I);
Question 3: Bonus
a) Filter the image by a 3*3 median filter, without padding.
Solu.
1st pixel = med(0, 5, 5, 6, 6, 6, 7, 7, 15) = 6
2nd pixel = med( 6, 6, 6, 7, 7, 8, 8, 8, 15) = 7
3rd pixel = med(0, 5, 5, 6, 6, 6, 7, 7, 15) = 6
4th pixel = med( 6, 6, 6, 7, 7, 8, 8, 8, 15) = 7
Filtered image = 6 7
6 7
Filtered image = 6 8
6 8