I have a web site that allows users to upload images of cars and I would like to put a privacy filter in place to detect registration plates on the vehicle and blur them.

The blurring is not a problem but is there a library or component (open source preferred) that will help with finding a licence within a photo?

Caveats;

  1. I know nothing is perfect and image recognition of this type will provide false positive and negatives.
  2. I appreciate that we could ask the user to select the area to blur and we will do this as well, but the question is specifically about finding that data programmatically; so answers such as 'get a person to check every image' is not helpful.
  3. This software method is called 'Automatic Number Plate Recognition' in the UK but I cannot see any implementations of it as libraries.
  4. Any language is great although .Net is preferred.

Thanks in advance

Ryan

link|improve this question

Any web service that does this? Sending pictures is of course data-intensive but they could be resized and set to greyscale before sending. – Somatik Mar 30 at 16:15
feedback

11 Answers

up vote 2 down vote accepted

try this Simple Automatic Number Plate Recognition System

http://opos.codeplex.com/

Open source and written with C#

link|improve this answer
feedback

I came across this one that is written in java javaANPR, I am looking for a c# library as well.

I would like a system where I can point a video camera at some sailing boats, all of which have large, identifiable numbers on them, and have it identify the boats and send a tweet when they sail past a video camera.

link|improve this answer
I've converted a couple of the classes, but it is going to take some time. – Ryan O'Neill Aug 11 '09 at 10:23
line by line conversions are never fun or quick. – Bruce McLeod Aug 11 '09 at 23:27
@Ryan did you ever complete the conversion? – Rowland Shaw Nov 3 '10 at 17:22
Sorry, no. Seems popular but STILL snowed under. – Ryan O'Neill Nov 3 '10 at 19:44
This looks good... If you want to make this work on .NET you could either use IKVM or just simply abstract it behind a web service... – Mauricio Scheffer Feb 10 at 17:08
feedback

I have done some googling about this a couple of months ago. There are quite a few papers about this topic, but I never found any concrete open-source implementation. There are a lot of commercial implementations though, but none of them with a price quote, so they're probably pretty expensive.

link|improve this answer
Thanks, I did not see the research papers before I must have gone Google blind. I'll check them out. – Ryan O'Neill Jun 11 '09 at 16:27
I decided to mark this as the answer because although it does not provide an open source solution, it gives me enough to go on. – Ryan O'Neill Jun 16 '09 at 10:09
4  
If you find or create an open source solution please let us know! – Mauricio Scheffer Jun 16 '09 at 13:26
licenseplate.sourceforge.net have not tested it – Somatik Mar 30 at 12:07
@Somatik : can you make that an answer? – Mauricio Scheffer Mar 30 at 13:36
feedback

The blurring is not a problem but is there a library or component (open source preferred) that will help with finding a licence within a photo?

Ans: The CARMEN FreeFlow ANPR Software engine (Commerical)

link|improve this answer
are you sure that "The CARMEN FreeFlow ANPR Software engine" is open-source? – Mitch Wheat Jun 11 '09 at 14:32
Looks good, but I was scared away by the blurb ('The software is protected with hardware dongles, with different kinds of interfaces (USB 2.0, PCI 2.1, PCIe (x1))'). I don't know how they expect people to use their software in a hosted environment, especially since virtualisation is kicking off. – Ryan O'Neill Jun 11 '09 at 16:25
Consider it an investment if you are planning to sell what you make to money.You can always talk to the vendor to give you a non dongled solution if you are serious about it.The library mentioned above has C# Wrappers your can call etc... – abmv Jun 11 '09 at 18:53
I was told it costs about $500 for a basic license. Ideal size is 16 pixels height per character. – Somatik Mar 30 at 16:11
feedback

Yes I use gocr at http://jocr.sourceforge.net/ its a commandline application which you could execute from your application. I use it in a couple of my applications.

link|improve this answer
feedback

http://licenseplate.sourceforge.net Python (I have not tested it)

link|improve this answer
feedback

It maybe work looking at Character recoqnition software as there are many libraries out there that perform the same thing. I reading an image and storing it. Micrsoft office is able to read tiff files and return alphanumerics

link|improve this answer
feedback

you might also give a try at SimpleLPR

http://www.warelogic.com

link|improve this answer
feedback

There's an OCR API at http://www.wisetrend.com/wisetrend_ocr_cloud.shtml with some advanced detection options and XML output (which, if I remember correctly, will include both the detected text and the coordinates where the text was found) - you may be able to adapt this to your needs (blur at all coordinates where text was detected)

link|improve this answer
feedback

Have a look at Java ANPR. Free license plate recognition...

link|improve this answer
1  
It was already mentioned. – Grzegorz Oledzki Aug 23 '10 at 8:43
feedback

High performance ANPR Library - http://www.dtksoft.com/dtkanpr.php. This is commercial, but they provide trial key.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.