-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting all detections #4
Comments
to get all detection + the people tracking, you can just change this line in darkflow to something like this :
it will draw the other objects in the image as well. |
@Bendidi Awesome, thanks. Also, is there a way to output in real time (via txt or csv file) the last ID number detected? |
here is the line where it writes to a csv each new box ID+ frame number + box coordinate in pixels and as I've said here in one of my answers :
|
@Bendidi Thanks again for your prompt reply. I tested this solution, but the csv table is only populated after the program has been stopped. I meant to output real time data, like a stream of values or a csv file that is constantly being populated by the new IDs. |
it should be fixed with the last commit 👍 |
@Bendidi For some reason after your update I am getting a 404 error on the github repo (the darkflow folder to be specific), and it is not updating. Once again thank you very much! |
I just double checked and the folder is up again. Now there is another error that is being generated: Traceback (most recent call last): (Sorry for asking too many questions). |
I just checked and could solve the error by converting indentation to spaces. Now another error pops up: Traceback (most recent call last): I would really appreciate your help with this. |
in line 106 of darkflow/darkflow/net/help.py , just change the 'wb' to 'w' , I'll make the change in the repo later It's a problem that happens when using python 3 , when I tested last time it was with python 2 ^^ |
@Bendidi Awesome, thanks a lot! |
Hi,
I would like to know if there is a way to get the other detections as well while getting the people count? I am interested in having a way to get info on the context (no need to be tracked), as well as the unique number of people.
Thanks a lot for your help.
The text was updated successfully, but these errors were encountered: