我遇到了OpenCv的python包装器问题。 我有这个函数,如果黑色像素的数量大于阈值
,则返回1def checkBlackPixels( img, threshold ):
width = img.width
height = img.height
nchannels = img.nChannels
step = img.widthStep
dimtot = width * height
data = img.imageData
black = 0
for i in range( 0, height ):
for j in range( 0, width ):
r = data[i*step + j*nchannels + 0]
g = data[i*step + j*nchannels + 1]
b = data[i*step + j*nchannels + 2]
if r == 0 and g == 0 and b == 0:
black = black + 1
if black >= threshold * dimtot:
return 1
else:
return 0
当输入为RGB时,循环(扫描给定图像的每个像素)效果很好 图像...但如果输入是单通道图像,我会收到此错误:
for j in range( width ):
TypeError: Nested sequences should have 2 or 3 dimensions
输入单通道图像(在下一个示例中称为“rg”) 一个名为'src'的RGB图像,用cvSplit和cvAbsDiff
处理cvSplit( src, r, g, b, 'NULL' )
rg = cvCreateImage( cvGetSize(src), src.depth, 1 ) # R - G
cvAbsDiff( r, g, rg )
我也已经注意到问题来自于从cvSplit获得的差异图像......
任何人都可以帮助我吗? 谢谢
答案 0 :(得分:4)
widthStep
和imageData
不再是IplImage对象的有效属性。因此,循环每个像素并获取其颜色值的正确方法将是
for i in range(0, height):
for j in range(0, width):
pixel_value = cv.Get2D(img, i, j)
# Since OpenCV loads color images in BGR, not RGB
b = pixel_value[0]
g = pixel_value[1]
r = pixel_value[2]
# cv.Set2D(result, i, j, value)
# ^ to store results of per-pixel
# operations at (i, j) in 'result' image
希望你觉得这很有用。
答案 1 :(得分:2)
您使用的是什么版本的OpenCV和哪个Python包装器?我建议将OpenCV 2.1或2.2与库附带的Python接口一起使用。
我还建议您避免手动扫描像素,而是使用OpenCV提供的低级功能(请参阅OpenCV文档的Operations on Arrays 部分)。这种方式不会出错,而且很多更快。
如果要计算单通道图像或带有COI设置的彩色图像中的黑色像素数(以便将彩色图像有效地视为单通道图像),您可以使用该功能CountNonZero:
def countBlackPixels(grayImg):
(w,h) = cv.GetSize(grayImg)
size = w * h
return size - cv.CountNonZero(grayImg)