Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在vision.ForegroundDetector用于运动检测。它返回前景图像。有没有什么办法也可以获得它已经学习的背景图像?
vision.ForegroundDetector
vision.ForegroundDetector 并没有真正学习背景图像。它学习每个像素的强度或颜色的概率分布。理论上,您可以获取每个分布的均值或众数并将它们放入图像中,但 vision.ForegroundDetector 不提供此功能。
您可以使用按位运算符,尝试分离前景蒙版,然后剩余的像素将成为您的背景。
您也可以尝试 cv2.absdiff() 方法来查找差异。
谢谢你!