gpt4 book ai didi

python - OpenCV : Python equivalent of `setTo` in C++

转载 作者:太空狗 更新时间:2023-10-29 23:49:24 33 4
gpt4 key购买 nike

Mat::setTo 的 python 等价物是什么?在 C++ 中?

我想做的是通过掩码设置值:

Mat img;
...
img.setTo(0, mask);

更新:

这里是可能的解决方案:

#set by mask area to zero
img= np.random.rand(200, 200, 3) * 255
img= img.astype(np.uint8)
mask = np.zeros((200, 200), np.uint8)
mask[10:100, 60:140] = 255
inv_mask= cv2.bitwise_not(mask)
n_channels= img.shape[2]
for i in range(0,n_channels):
img[..., i]= img[..., i] * (inv_mask/255)

#to set arbitary value
img= np.random.rand(200, 200, 3) * 255
img= img.astype(np.uint8)
mask= np.zeros((200,200), np.uint8)
mask[10:100, 60:140]= 255
mask_bool= np.where(mask > 0)
value= 120
img[mask_bool]= value

最佳答案

你可以简单地使用 img[mask > 0] = 0 这是 python 等同于 img.setTo(0, mask);

关于python - OpenCV : Python equivalent of `setTo` in C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41829511/

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