如何使用opencv在短图像序列中检测运动物体?

时间:2018-09-18 11:07:38

标签: python opencv image-processing computer-vision object-detection

我有一小段灰度图像(20张图像),这是从相机收集的连续帧。我需要在每个图像中标识一个小的运动物体的位置。我尝试使用背景减法,并且可以识别每个图像中的运动像素。如何继续检测该移动物体的确切位置?

1 个答案:

答案 0 :(得分:0)

您可以尝试这种方式。

(1)首次使用模板匹配找到对象。

https://docs.opencv.org/3.0-beta/doc/tutorials/imgproc/histograms/template_matching/template_matching.html?highlight=template%20matching

(2)使用camshift或其他跟踪算法跟踪对象。 https://github.com/opencv/opencv/blob/master/samples/python/camshift.py