Question about sodft_visma
Hi, Thanks for sharing the code.
I have downloaded the VISMA dataset and successfully compiled both the dataset tools and this code (using build.sh). I also modified the paths in .json files, but I am not sure how can I use the apps.
I tried to executive the sodft_visma, but I found the code was stuck in socket->send(msg);. I assumed the msg will be sent to the faster RCNN model, and request the bbox. But I do not know how it works.
Shall I somehow build a Faster RCNN agent using the code in scripts, or I missed some points during the compilation?
Thank you in advance.
Yes, the tracker waits for bounding box messages from an external source. But you can modify the code so that the tracker operates by itself.
Thanks for your reply.
I looked into the code closely again. I found, actually in MOT_visma.cpp, you have already implemented a demo that directly read the pre-processed bbox and edge map without communication with Faster-RCNN. Is this the app used in the paper experiment?
I am trying to run this app, but now the code stuck in https://github.com/feixh/VISMA-tracker/blob/b52c94b63ecbed2a6678d4574f05567aaf4d5693/tracker/tracker_sir.cpp#L56 with level==1. I am not familiar with the particle filter and do not know how to fix the problem. Could you help me out?
BTW, there is a typo in https://github.com/feixh/VISMA-tracker/blob/b52c94b63ecbed2a6678d4574f05567aaf4d5693/tracker/tracker_utils.cpp#L25 which I believe should be StrFormat("%s/%s", root, cat_json);
Hi, @yangfengt123. I met the same problem as you described. The mot bin stuck in https://github.com/feixh/VISMA-tracker/blob/b52c94b63ecbed2a6678d4574f05567aaf4d5693/tracker/tracker_sir.cpp#L56 . More specifically, the code stuck in https://github.com/feixh/VISMA-tracker/blob/4116ba16e07d4b82c3e87a38a0f01b11a5813623/tracker/tracker_sir.cpp#L233. @yangfengt123 Did you solved the problem? @feixh Do you have any suggestions about that?