deep-person-reid icon indicating copy to clipboard operation
deep-person-reid copied to clipboard

Results of MOT Eval with using OSNet_1.0

Open zengjie617789 opened this issue 3 years ago • 2 comments

I used the osnet_1.0 to extract pedstrain features in deepsort code. Here is the hype-parameters below:

    def __init__(self, model_path, max_dist=0.2, min_confidence=0.3, nms_max_overlap=1.0, max_iou_distance=0.7, max_age=70, n_init=3, nn_budget=100, use_cuda=True):
        self.min_confidence = min_confidence
        self.nms_max_overlap = nms_max_overlap

        self.extractor = Extractor_OSNet(model_path, use_cuda=use_cuda)

The results of MOT Eval is shown below, and the upper picture is about inputing (64, 128) size , the other is (128,256): image-20210623102233547-1624414955093

image-20210623094746641-1624412869958

My question is the results is not so good, i am doubt that if i use it properly? how can i fix it ? I will be appreciate if anyone who can help me, thank you in advance .

zengjie617789 avatar Jun 23 '21 02:06 zengjie617789

I suggest you look into FastMOT on github. The author used same osnet_x0.25 as feature extractor for deep sort.

Results are much better and tracking runs in real time

sainivedh avatar Jun 28 '21 04:06 sainivedh

@sainivedh thank you , i will look into FastMOT later. I am using FairMOT which is faster than two-stage MOT model, and i think it is what i wanted.

zengjie617789 avatar Jun 28 '21 05:06 zengjie617789