PaddlePaddle / PaddleDetection

Object Detection toolkit based on PaddlePaddle. It supports object detection, instance segmentation, multiple object tracking and real-time multi-person keypoint detection.
Apache License 2.0
12.79k stars 2.89k forks source link

What does the Tracker implemented in PaddleDet do about missing det? #7967

Open YoungjaeDev opened 1 year ago

YoungjaeDev commented 1 year ago

问题确认 Search before asking

请提出你的问题 Please ask your question

HelloI 'm going to take out only the paddle tracker separately and implement it in the my detection project that I used before. But I'm curious how the tracker implemented in the paddle controls the missing Det by Detection.

For example, if use depthport, of course, I know that Tracker itself doesn't have basic logic to save the missing det. I know that it only generates track-id for captured Det.

However, if I look at the tracker implemented in nvidia deepstream, it seems that the concept of interval is used to predict the Det box in some way even if skip det. I don't know the exact method in Nvidia, but I don't know if deepstream-tracker is looking for a similar feature by turning the kernel around the existing box, but I wonder if there's such a feature in the paddle tracker.

Thank you so much

nemonameless commented 1 year ago

https://github.com/PaddlePaddle/PaddleDetection/issues/6511

YoungjaeDev commented 1 year ago

@nemonameless What do you mean? I was asking about PaddleSeg