opencv 修改畫素

Lois發表於2020-06-01

讀取畫素

返回值 = 影像.item(位置引數)
灰度影像,返回灰度值
BGR 影像,返回值為 B,G,R 的值

p = img.item(88, 142)
print(p)
blue = img.item(78, 125, 0)
green = img.item(78, 125, 1)
red = img.item(78, 125, 2)

修改畫素

影像名:itemset(位置,新值)

# 灰度影像
img.itemset((88, 99), 255)
# BGR 影像
img.itemset((88, 99, 0), 255)
img.itemset((88, 99, 1), 255)
img.itemset((88, 99, 2), 255)
本作品採用《CC 協議》,轉載必須註明作者和本文連結
Hacking

相關文章