dcstempt

Results 6 issues of dcstempt

在 ` rb_tree:: find(const key_type& key) const ` 函数定义中: 最后一行: `return ( j == end() || key_comp_(key, value_traits::get_key(*j)) ) ? end() : j; ` 出现报错 ` error: operands to ?:...

既然是端到端的目标跟踪,那么为何还需要提前训练一个目标检测模型(YOLOx),并使用目标检测模型提供检测框的位置信息和类别信息呢? 作者代码中的推理 `submit_dance.py`,仍然需要提前准备好每一帧目标检测的结果??求解?

Thank you for your nice work. Can this project achieve real-time video stream object tracking? During my testing, with the RTX A4000 GPU, the average inference time per frame is...

Thank you for your nice work! My first question indicates that YOLOx offers positional information and confidence scores for object detection in each frame but doesn't provide class information for...

当我在线程A:初始化YOLOv8,设置显卡的id,并随机生成一张RGB图像进行模型预热; 线程A有以下一个重要步骤: cudaStatus = cudaSetDevice(this->gpu_id); // 设置显卡id this->yolo = std::make_shared(this->param); // 调用构造函数 yolo->init(this->trt_file) // 调用init函数 this->yolo->check(); 此时,我在线程B,调用YOLOv8进行图像检测,将会报错: [E] [TRT] 1: [caskUtils.cpp::createCaskHardwareInfo::852] Error Code 1: Cuda Runtime (an illegal memory access...