Q1. Which operator is this?
[[-1 0 1]
[-2 0 2]
[-1 0 1]]
- Sobel
- Scharr
- Prewitt
- Laplacian
Q2. Which of the following OpenCV functions can be used to threshold an image?
- cv2.threshold()
- cv2.thresh()
- cv2.Thresh()
- cv2.Threshold()
Q3. In a high contrast image, _________?
- everything looks nearly of the same intensity (dull, washed-out grey look)
- everything looks clear to us
Q4. Which technique is used to construct a color image from a Bayer image?
- Sampling
- Interpolation
- Segmentation
- Quantization
Q5. Which of the following OpenCV functions can be used to create a structuring element?
- cv2.getStructuringElement()
- cv2.createStructEl()
- cv2.createStructuringElement()
- cv2.getStructEl()
Q6. How to calculate the threshold value for adaptive Thresholding?
- Mean of the pixel neighborhood
- Weighted Mean of the pixel neighborhood
- Median of the pixel neighborhood
- Can be any of the above three
Q7. In the expression g(x,y) = (k+1)*f(x,y) – k*b(x,y), if we set k=1 what is this technique called? Suppose f(x,y) is the input image, b(x,y) is its blurred version and g(x,y) is the output image.
- Unsharp Masking
- Highboost filtering
- Laplacian of Gaussian
- Difference of Gaussian
Q8. Which of the following set operations are generally used in Morphological image processing?
- Union
- Intersection
- Difference
- All of the above