I am creating an image so:
image = np.empty(shape=(height, width, 1), dtype = np.uint16)
After that I convert the image to BGR model:
image = cv2.cvtColor(image, cv2.COLOR_GRAY2BGR)
I'd like to convert the image now in a dtype = np.uint8
in order to use that image with cv2.threshold()
function. I meant, I would like to convert the image to CV_8UC1
.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…