-
Notifications
You must be signed in to change notification settings - Fork 275
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
Paf.cpp, index out of range error #318
Comments
This is a legitimate (crash) bug that's existed since version 1, yes when an element is deleted that's not the last element all the preexisting index references past that element need updating. I've fixed it in my own local repository and I kept forgetting to send a pull request. |
Hi @korejan , could send us a PR about that if convinient? |
@korejan Hi, are you available to send us a PR about this? Or you can indicate where you made such modification and I can adopt it manually. |
@ganler sorry I've been extremely busy at work the past couple of months. The fix is very simple though the reason why I haven't submitted a PR is that there's actually two ways to fix it, one will be slightly faster for (very) large vectors but it makes the assumption that the human_refs list elements are stored in order, if i remember correctly when i was debugging this a couple of months ago i think this was the case but I don't know if this was intended or not so my local fix iterates through all the entries, my change does this in paf.cpp/get_humans: |
Thanks to: #318 (comment) - [ ] Verification required.
@aaron-michaux Hi, could you provide an image sample that can reproduce this error? We are working on a fix on this and I think I need to test the fix. |
Hi, I'll try to get something. Sorry, just noticed this. I've also found some other bugs, which I didn't bother to investigate. (Maybe I can send you problem images?) |
Yes, please. Just report the errors and bugs and we will try our best to fix them.. |
How do I send you an image. It's propriety -- no big deal if this particular image finds its way onto the interwebs, but if I send you other images, then they'll need to be kept private. Please advise. |
@aaron-michaux Through my e-mail: [email protected] |
I tried many models but did not found any segmentation fault. Could you also indicate which model you are using? |
Thanks to: #318 (comment) - [ ] Verification required.
There seems to be an error with our indices are handled when parsing features. In particular, in the function
get_humans
If you change the marked line above to:
So somewhere the
hr_ids[...]
are getting borked.In particular, if you look at the line:
I believe this corrupts the data structure if we're not erasing the last element of the vector. It seems to me that you need to add the following line below:
Since I'm not familiar with the algorithm, I'd like confirmation that my intuition is indeed correct.
The text was updated successfully, but these errors were encountered: