0
我通過簡單的Image(opencv_image)調用將OpenCV圖像轉換爲SimpleCV,並使用Image.findBlobs()獲取blob。但是,我不能得到使用Blobs.getBoundingBox()邊框,因爲我得到的錯誤:在simpleCV中使用findBlobs()獲取錯誤
blobs.draw() AttributeError的:「NoneType」對象有沒有屬性「畫」
fgmask是前景掩模我已經收到背景扣除後。
這裏是我的代碼:
simplecvimg = Image(fgmask, cv2image=True)
blobs = simplecvimg.findBlobs()
blobs.draw()
simplecvimg.show()
findBlobs實際上返回None。爲什麼?我可以在simplecvimg中看到白色斑點! – Manisha