-
Notifications
You must be signed in to change notification settings - Fork 27
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
Where is the feature of bluring previous frames in case of missed detections implemented? #79
Comments
Hast du ein 60fps Video genommen zum probieren? Did you took a 60 frames per second video? |
@tfaehse removed it in favor of faster batch processing |
Would be nice to have it back, just to avoid flashing license plate within scenes. |
Thanks you for the answer, i found the commit: Now I can look how I can enable the feature again, probably by losing performance. But I have cases in which this feature would help and is more important than speed. |
Could you please share with us in case you find a way ? |
also, this issue is now a duplicate of #68, both are asking the same thing |
I also would like it back :-) |
Same here, this feature would help a lot. I have a lot of flickering between some frames unfortunately. |
I'll try to address this over the holidays, I didn't know it was actually popular :) |
I would really like to have the feature back - it doesn't matter if it takes longer - it's still faster than correcting the errors by hand. |
Hi, |
I also would like to have this feature back :) |
This PR should fix this, hopefully: #87 Basically, the pipeline was (pretty massively) changed to
Internally, this tracker (https://github.com/tryolabs/norfair, love it) uses kalman filters to estimate movement of boxes it can track. In the best case, this works better than a frame memory, because the position is not the same as in the previous frames but a better estimation. Worst case it's the same as before, because no real motion can be estimated. I hope this works well for you! :) Next up, the detector has to be improved. |
According to the readme, the dashcamcleaner has a nice feature:
"Sometimes, a license plate might be missed for just one frame. This one frame, usually 1/30th of a second long, still means the license plate or face could easily be identified - a computationally very cheap (as opposed to increasing the inference scale) way to fix such false negatives can be the frame memory option. In essence, it blurs not only the detected boxes in the current frame, it also blurs regions that were detected in n frames before."
Where is it implemented and how can i influence the number of previous blurred frames?
The text was updated successfully, but these errors were encountered: