python 中的光流
有人可以向我展示如何在 python 中使用 cv.calcOpticalFlowPyrLK 的示例吗?我在网上查了一下,不太明白。
Can someone show me an example of how to use cv.calcOpticalFlowPyrLK in python? I've looked over the internet and can't quite figure it out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个来自 OpenCV-Python 的 网页文档可以帮助理解带有源代码的光流算法。源代码也可以在 OpenCV 安装文件夹中找到:
C:\opencv\samples\python2\lk-track.py
。编辑
这也有帮助。(解释+SC+演示)
This webpage from the OpenCV-Python Documentation can help understanding the Optical Flow algorithm with source code. The source code can also be found in the OpenCV installation folder :
C:\opencv\samples\python2\lk-track.py
.EDIT
This also can help.(Explanation+SC+Demo)