bytetrack-opencv-onnxruntime icon indicating copy to clipboard operation
bytetrack-opencv-onnxruntime copied to clipboard

分别使用OpenCV、ONNXRuntime部署YOLOX+ByteTrack目标跟踪,包含C++和Python两个版本的程序

Results 8 bytetrack-opencv-onnxruntime issues
Sort by recently updated
recently updated
newest added

您好,首先感谢你的分享。 utils.cpp文件的BYTETracker::iou_distance()函数中。 在IOU匹配之前,要取轨迹预测的位置用来和当前detection进行匹配。 但是我看了一下代码流程, atlbrs.push_back(atracks[i]->tlbr); atracks[i]->tlbr的值不是predict之后的值吧?我看了下,好像没更新。 我想问下,这个地方我理解的是不是有问题。

[ERROR:0] global /home/opencv/modules/dnn/src/onnx/onnx_importer.cpp (1788) handleNode DNN/ONNX: ERROR during processing node with 5 inputs and 1 outputs: [Slice]:(467) terminate called after throwing an instance of 'cv::Exception' what(): OpenCV(4.5.0) /home/opencv/modules/dnn/src/onnx/onnx_importer.cpp:1797: error: (-2:Unspecified...

多类别的请问有相应的工程嘛

Total frames: 1625, fps: 29 terminate called after throwing an instance of 'cv::Exception' what(): OpenCV(4.2.0) /home/dk/opencv/modules/dnn/src/onnx/onnx_importer.cpp:101: error: (-211:One of the arguments' values is out of range) Input is out of...

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...

the code in bytetrack-opencv-onnxruntime/onnxruntime/cpp/src/BYTETracker.cpp script if (track->score < this->high_thresh) continue; low score dets in the first frame will not use. is it right? if so, is it necessary to Add...