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

Attempted to use a closed Session #17

Closed mayidu closed 6 years ago

mayidu commented 6 years ago

Hello, I run the deep sort in py-faster-rcnn, but there are error when use the generate_detections.create_box_encoder get the encoder about "Attempted to use a closed Session", are you get this error, thanks

obendidi commented 6 years ago

the error is quite straightforward, you tried to use the session of faster-rcnn after it was closed , so it's either keep the session open (if you loaded deep_sort in same graph as faster-rcnn ) or make a new graph and new session for deep_sort

Ps : closing the issue because this question is better asked on stack overflow