gpt4 book ai didi

python - 三 channel 二值图像到三 channel RGB图像的转换

转载 作者:行者123 更新时间:2023-12-02 17:51:38 24 4
gpt4 key购买 nike

有没有OpenCV将三 channel 二值图像转换为三 channel RGB 图像的函数?
这是我的代码,disparitySGB.jpg是灰度(3 channel 图像)。

import cv2
import numpy as np

image=cv2.imread("disparitySGB.jpg")
thresh=cv2.inRange(image,np.array([89,89,89]),np.array([140,140,140]));
cv2.rectangle(np.array(thresh),(100,100),(120,120),(255,255,0),3)
cv2.imshow("thresh",thresh)
cv2.waitKey()
inRange返回8U图像。我担心绘制的矩形必须是彩色的。在这种情况下它是白色的。(我认为是因为图像是三 channel 二值图像)。

最佳答案

# my dummy channels:
r = np.ones((100,100),np.uint8) * 100
g = np.ones((100,100),np.uint8) * 70
b = np.ones((100,100),np.uint8) * 10

#now, just merge them:
rgb = cv2.merge((r,g,b))

您只能在 3 channel 垫上绘制彩色的东西。你可能需要: thresh_col = cv2.cvtColor(thresh,cv2.COLOR_GRAY2BGR) 然后画进去

关于python - 三 channel 二值图像到三 channel RGB图像的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20069662/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com