ByteTrack-cpp icon indicating copy to clipboard operation
ByteTrack-cpp copied to clipboard

C++ implementation of ByteTrack that does not include an object detection algorithm.

Results 7 ByteTrack-cpp issues
Sort by recently updated
recently updated
newest added

我尝试用该工程测试一组视频,检测器是yolov5s。该工程会有缓慢的内存泄漏,超过两个小时运行速度明显变慢,内存使用会不断增加

当我 cmake .. -DBUILD_BYTETRACK_TEST=ON 报错,没有GTEST CMake Error at CMakeLists.txt:56 (message): GTest not found. 我的目标是先使用测试程序来调用bytetrack算法的接口。忘博主能给我指点下,感谢,努力的小白一枚 @medalotte

While using ByteTrack as a tracker, the visualized bounding boxes sometimes do not precisely match the detection results. Are there any methods to assign tracking IDs to detections without altering...

Hi, We have vehicle detection system which is running on the road intersection . Every frame there is around 60- 90 objects. (20fps) Can bytetrack handle this amount realtime ?...

Once again thank you for putting this together, and for reacting to the issues/PRs so quickly. ## Issue When using this library through ```cmake FetchContent_Declare(ByteTrackCpp GIT_REPOSITORY https://github.com/Vertical-Beach/ByteTrack-cpp.git GIT_TAG main GIT_SHALLOW...

卡口摄像头车辆从近处进入场景,预测框宽度异常为啥,大神可以解释一下嘛,可参考图片效果[https://img-blog.csdnimg.cn/img_convert/dac2d9c22a2cc4612b02778939800a24.gif](url)

In the following code there are unnecessary calculations being performed as the same variable cancels itself out. https://github.com/Vertical-Beach/ByteTrack-cpp/blob/d43805d461a714f65da039981bd5f5d21cf5cf59/src/Rect.cpp#L121 Instead it should be. ``` const float ua = (tlwh[2] + 1)...