ColorTracker:基于 CVPR 2014 论文“Adaptive Color Attributes for Real-Time Visual Tracking”的 C++ 和 openCV 颜色跟踪器代码

时间:2021-06-11 06:38:00
【文件属性】:
文件名称:ColorTracker:基于 CVPR 2014 论文“Adaptive Color Attributes for Real-Time Visual Tracking”的 C++ 和 openCV 颜色跟踪器代码
文件大小:73.41MB
文件格式:ZIP
更新时间:2021-06-11 06:38:00
C++ 介绍 该 C++ 代码是 [1] 中提出的视觉跟踪方法的实现。 该实现基于论文作者提供的 Matlab 代码。 使用 openCV 在 C++ 中的实现是由 Mostafa Izz 完成的。 编译 先决条件: 支持 C++11 的 C++ 编译器 OpenCV 2.4 开发文件 CMake 2.8.3+ # download/clone the repo $ mkdir build $ cd build $ cmake .. -DCMAKE_BUILD_TYPE=Release $ make 演示运行 $ cd ColorTracker $ ./build/demo-video 应用程序接口 类“color_tracker”中的代码提供了两个接口 cv::Rect track_frame(cv::Mat ¤t_frame) 提供用于逐帧跟踪因此,需要传递给构造函数的参数仅用

网友评论