cfnet
cfnet copied to clipboard
How do I see "Tracking"?
I followed "Tracking only" 1~6 step. and Matlab gave me this message "dist: 32.25 overlap: 60.94 fps: 32.0" when I ran 'run_cfnet1_evaluation' with 'tc_Airport_ce' dataset. I expected the result show me 'tracking scene' because this model is suited to object tracking, but just threw me above message. Originally, does this model throw 'distribution result, overlap (IoU), fps (frame per second) ??
Basically, you want to see the bounding box from the tracker drawed on the images? Or I misunderstood?
Right! I want to see the bounding box! Like this: https://www.youtube.com/watch?v=_zZe27JYi8Y
Tracking can show a sequence of detection.
@89douner, The tracker accepts a parameter called "visualization" which is set to "false" by default if you don't set it.
The easiest option is to modify "run_cfnet1_evaluation" and add the following line
tracker_par.visualization = true;
After that you should be able to see the boxes, if it's not displaying, then you probably need to install the "Computer Vision System Toolbox" in matlab. At least for me, it takes a moment to load the that toolbox for displaying the images the first time
Thanks a lot !!
When I executed this command "run run run_cfnet3_evaluation.m", Video player GUI was displayed well!
I have one more question.
How do I save the tracking video, Video player GUI?
For saving the images there's no "built-in" feature so you have to do some modifications to the code
Thanks!!