我正在学习该页面https://realpython.com/python-opencv-color-spaces/。我想在图像中选择青柠,然后我首先要看。
我在https://www.rapidtables.com/convert/color/rgb-to-hsv.html中看到石灰在HSV中为(120,100,100)。
所以我写了:
green = (120, 100, 100)
g_square = np.full((10, 10, 3), green, dtype=np.uint8) / 255.0
plt.imshow(hsv_to_rgb(g_square))
plt.show()
我的问题是我没有显示石灰,而是深绿色...