-
Notifications
You must be signed in to change notification settings - Fork 23
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
Can not recognize image #7
Comments
@Xaaris I know it is a long time ago, but do you have solve your problem? I'm facing the same issue and I can't fix it. Thank you. |
@damien-nd I have not. I went on to build my own system in Python which you can find here: https://github.com/Xaaris/Hauptprojekt |
@Xaaris I'm new to Python but I will have a try. Your screenshoot looks promising, nice job. |
As I said, its still in a rough state but hit me up if you have questions |
Hey, I followed your installation instructions and everything seems to be correct so far. But when I try to recognize a basic image (even the official example image http://plates.openalpr.com/h786poj.jpg) I get no results. I followed you example closely and have the following code:
let image = UIImage(named: "testImage")! let alprScanner = OAScanner(country: "eu", patternRegion: "de") print("ALPR version: \(alprScanner?.version())") alprScanner?.scanImage(image, onSuccess: { (plates) in print("found \(plates?.count) plate(s)") plates?.forEach({ (plate) in print("result: \(plate.number) : confidence: \(plate.confidence)") }) }, onFailure: { (error) in print("error: \(error)") })
All I'm getting is
ALPR version: 2.3.0 found Optional(0) plate(s)
Do you have any ideas what I might be doing wrong?
The text was updated successfully, but these errors were encountered: