shouxieai / tensorRT_Pro

C++ library based on tensorrt integration
MIT License
2.62k stars 549 forks source link

deepsort级联匹配问题 #212

Open littlesquirrel2017 opened 9 months ago

littlesquirrel2017 commented 9 months ago

tensorRT_Pro/blob/main/src/application/tools/deepsort.cpp中 line881~line886:

 for (auto index : unmatched_objects_index) {
                objects_[index].mark_missed();
            }
            for (auto index : unmatched_boxes_index) {
                this->new_object(boxes[index]);
            }

是不是应该放到级联匹配里面? 即是不是应该放到line877后面?