...
/Quiz: Color Spaces, Thresholding, and Adaptive Threshold
Quiz: Color Spaces, Thresholding, and Adaptive Threshold
Test your knowledge of color spaces, thresholding, and adaptive threshold.
We'll cover the following...
We'll cover the following...
Color Spaces, Thresholding, Adaptive Threshold
1.
Let’s consider the following image, read from a file:
image = cv2.imread(filepath, cv2.IMREAD_GRAYSCALE)
If the dimensions of the image are: height = 480
, width = 640
, what would be the value of image.shape
?
A.
(480, 640)
B.
(640, 480)
C.
(480, 640, 1)
D.
(640, 480, 1)
1 / 7