Stark icon indicating copy to clipboard operation
Stark copied to clipboard

Are all the models here working on single object tracking not MOT?

Open ayanasser opened this issue 3 years ago • 4 comments

Hello, Thank you for your contribution ^^, I need to know if all the pretrained models here are working on single object tracking, So I wounder if there's any model working as MOT

ayanasser avatar Sep 16 '21 10:09 ayanasser

Hi, for now the STARK code only supports SOT. But it should not be too hard to extend it to MOT :)

MasterBin-IIAU avatar Sep 17 '21 13:09 MasterBin-IIAU

Thank you @MasterBin-IIAU ^^ I have a question regarding the model demo I made, Why the tracking box is not vanishing when the tracked object is become outside the frame? Is there any parameter related to this ?

ayanasser avatar Sep 19 '21 08:09 ayanasser

@ayanasser Hi, STARK can predict a confidence score besides the bounding box. You can set a threshold such as 0.5 to control the existence of the box. For example, you can set that "if the confidence score is less than 0.5, then do not show the box"

MasterBin-IIAU avatar Sep 22 '21 10:09 MasterBin-IIAU

@ayanasser Hi, STARK can predict a confidence score besides the bounding box. You can set a threshold such as 0.5 to control the existence of the box. For example, you can set that "if the confidence score is less than 0.5, then do not show the box"

Does STARK_X_trt predict with score besides? It seems that the output of STARK_X_trt only contains the coordinate of the box.

TsingWei avatar Feb 22 '22 07:02 TsingWei