obendidi / Tracking-with-darkflow

Real-time people Multitracker using YOLO v2 and deep_sort with tensorflow
GNU General Public License v3.0
524 stars 174 forks source link

Getting csv of other predictions #7

Closed arevel190 closed 7 years ago

arevel190 commented 7 years ago

Hi,

I wanted to know if it is possible to get a real time csv file (no need to be tracked) of all the objects darkflow detects. This would be super useful for context analysis.

Thank you very much!

obendidi commented 7 years ago

you can achieve that by modifying predict.py : you can get all the detection from this line and you just need to write them to csv like in here

arevel190 commented 7 years ago

@bendidi Thank you very much!