Image Processing Quiz-1

Q1. Which domain refers to the Fourier transform of an image?

  1. Spatial domain
  2. Frequency domain

Answer: 2
Explanation: In transform domain we first transform an image into another domain (like frequency) by applying for instance Fourier transform, do processing there and convert it back to the spatial domain by some inverse operations.

Q2. Which of the following techniques can be used for image segmentation?

  1. Histogram Equalization
  2. CLAHE
  3. Histogram Backprojection
  4. Histogram Specification

Answer: 3
Explanation: Histogram Backprojection can be used for image segmentation. To know more about Histogram Backprojection, refer to this link.

Q3. Which of the following OpenCV functions can be used to perform convolution operations?

  1. cv2.filter2D()
  2. cv2.convolve()
  3. cv2.filter()
  4. cv2.conv2D()

Answer: 1
Explanation: In OpenCV, cv2.filter2D() can be used to perform convolution operation. Refer to this link to know more about this function.

Q4. Which color model is used in printing?

  1. Additive color model
  2. Subtractive color model

Answer: 2
Explanation: Subtractive color model (CMYK) is used in printing. Refer to this link to know more.

Q5. Which domain refers to the image plane itself?

  1. Spatial domain
  2. Frequency domain

Answer: 1
Explanation: Spatial domain refers to the image plane. This means we perform all operations directly on image pixels.

Q6. In the dilation operation, generally the output image features becomes ________ ?

  1. Thinner
  2. Thicker
  3. Blurred
  4. Sharpened

Answer: 2
Explanation: Because Dilation dilates or expands the object region, the output image features becomes thicker. Refer to this link to know more.

Q7. Dilation is the ________ of Erosion?

  1. dual
  2. rotated version
  3. translated version
  4. neighbor

Answer: 1
Explanation: Dilation is the dual of erosion. Dual in the sense that dilating the object region is equivalent to eroding the background region and vice versa.

Q8. What type of filters results in image sharpening?

  1. Low Pass filters
  2. High Pass filters

Answer: 2
Explanation: Because high pass filters enhances the high-frequency parts of an image, these results in image sharpening.

Leave a Reply