MCQ Matlab Image Processing
MCQ Matlab Image Processing
A : display()
B : imread()
C : imshow()
D : show()
a) 2
b) 125
c) 126
d) 256
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?
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?
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