1. ——– function is used to display an image through an external viewer in scipy .
A : display()
B : imread()
C : imshow()
D : show()
2. How many different values can be picked by gray scale image?
a) 2
b) 125
c) 126
d) 256
3. What is the meaning of pixel value ‘1’ in binary imaging?
a) Black
b) White
c) Gray
d) Yellow
4. Finds edges at those points where the gradient of the image I is maximum, using the ------
approximation to the derivative?
A. BW = edge(I,'Canny');
B. BW = edge(I,'Prewitt');
C. BW = edge(I,'sobel')
D. BW = edge(I,'roberts')
5.To read image ‘orginal JPG’ in the command window ,the correct command is?
A. imread (orginal JPG)
B. imread(‘orginal JPG’)
C. imread(‘orginal.JPG’)
D. imread(‘orginal:JPG’)
6. ----- method is less likely than the other methods to be fooled by noise, and more likely to
detect true weak edges?
A. BW = edge(I,'Canny');
B. BW = edge(I,'Prewitt');
C. BW = edge(I,'sobel')
D. BW = edge(I,'roberts')
7. After histogram equalization is applied to the image {J = histeq(i)}; What gets the color of an
image?
A. the new red values are
B. the new gray values are
C. the new green values are
D. the new blue values are
8. how we can Brightness of an image is adjusted with adding or subtracting a certain value to
gray level of each pixel?
A. J=imread(i)
B. J = imadd(i)
C. J = imadjust(i)
D.J=set(i)
9.when add the salt and pepper noise by J = imnoise(I,'salt & pepper',0.02); how remove it?
A. K = medfilt2(J);
B. K = imdfilt2(J);
C. K = addfilt2(J);
D. K = sudfilt2(J);
10. -------- DE convolution can be used effectively when the frequency characteristics of the
image and additive noise are known, to at least some degree.
A. median Filter
B. Wiener filter
C. discrete filter
D. Octave Filter