Image Processing Quiz-5

Q1. Which of the following denotes 255 in the binary form?

  1. 11111111
  2. 00000000
  3. 01111111
  4. 11111110

Answer: 1
Explanation: In binary form, 255 is represented as 11111111. To know more about how to convert decimal to binary, refer to this link.

Q2. Which of the following OpenCV functions can be used to perform CLAHE?

  1. First we create a CLAHE object using “cv2.createCLAHE()” and then we apply this on the image using .apply() method
  2. cv2.applyCLAHE()
  3. cv2.clahe()
  4. None of the above

Answer: 1
Explanation: In OpenCV, first we create a CLAHE object using “cv2.createCLAHE()” and then we apply this on the image using .apply() method. Refer to this link to know more about this function.

Q3. What is the smallest element of an image?

  1. pixel
  2. dpi
  3. meter
  4. centimeter

Answer: 1
Explanation: In digital image processing, a pixel(or picture element) is the smallest item of information in an image.

Q4. Which of the following OpenCV functions can be used to apply an affine transformation to an image?

  1. cv2.warpAffine()
  2. cv2.affineTransform()
  3. cv2.applyAffine()
  4. cv2.WarpAffine()

Answer: 1
Explanation: In OpenCV, cv2.warpAffine() can be used to apply an affine transformation to an image. Refer to this link to know more.

Q5. Which of the following is an subtractive color model?

  1. RGB
  2. CMYK
  3. Both of the above
  4. None of the above

Answer: 2
Explanation: In subtractive model colors are perceived as a result of reflected light. For instance, Cyan is the complement of red, meaning that the cyan serves as a filter that absorbs red. The amount of cyan applied to a white sheet of paper controls how much of the red in white light will be reflected back from the paper. To know more about subtractive models, refer to this link.

Q6. 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.

Q7. For a skewed image histogram, which technique will can be used for improving the global contrast?

  1. Histogram Equalization
  2. Histogram Matching
  3. Histogram Balancing
  4. None of the above

Answer: 2
Explanation: For skewed image histogram, one reasonable approach can be to manually specify the transformation function that preserves the general shape of the original histogram but has a smoother transition of intensity levels in the skewed areas. This is what we do in Histogram Matching.

Q8. What does the term “Shadows” refers to in a 1D image histogram?

  1. Leftmost part (the black and dark areas)
  2. Rightmost part (light and pure white areas)
  3. Center part (medium grey areas)
  4. There is no such term!!!

Answer: 1
Explanation: Shadows as clear from the name refers to the Leftmost part of the histogram that contains mostly the black and dark areas. To know more about Image Histograms, refer to this link.

Leave a Reply