cfnet icon indicating copy to clipboard operation
cfnet copied to clipboard

How do I see "Tracking"?

Open 89douner opened this issue 6 years ago • 7 comments

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) ??

89douner avatar May 07 '18 13:05 89douner

Basically, you want to see the bounding box from the tracker drawed on the images? Or I misunderstood?

lukaswals avatar May 10 '18 06:05 lukaswals

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 avatar May 10 '18 06:05 89douner

@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

lukaswals avatar May 10 '18 06:05 lukaswals

Thanks a lot !!

89douner avatar May 10 '18 07:05 89douner

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? ddddddd

89douner avatar May 13 '18 08:05 89douner

For saving the images there's no "built-in" feature so you have to do some modifications to the code

lukaswals avatar May 14 '18 04:05 lukaswals

Thanks!!

89douner avatar May 14 '18 04:05 89douner