Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Java OCR

  1. #1
    Junior Member
    Join Date
    Mar 2013
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Java OCR

    Good evening I'm doing a project where I have to develop a language preferably java an application of a photograph has to take the digits of registration (plate) and see if the car is in the database so I've been researching there is an api sdk and OCR (Optical character Recognition) is a technology to recognize characters from an image file,
    Someone can give me some tips on how I can do this and where to start
    Thanks in advance.


  2. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: Java OCR

    Google 'java OCR api' and also see the following: format - Java based OCR SDK/API - Stack Overflow

    I have not used the packages in that link myself, but can guess that they vary in accuracy so I would try as many as you can with a training and test set to evaluate how they each perform (each algorithm is going to very in accuracy). I would also recommend perhaps using different feature extraction techniques and test for accuracy. FWIW I have written low level OCR tools and they are not trivial - often rely in a complex machine learning algorithm (neural network, PCA, etc..) that require lots of training and testing to even come close to reproducible and accurate results.

Similar Threads

  1. OCR in Java
    By Fariborz in forum Java SE APIs
    Replies: 2
    Last Post: December 24th, 2010, 04:17 AM