Source Code : Java OCR implementation

Java OCR implementation

package com.github.axet.lookup;import java.io.File;import com.github.axet.lookup.common.ImageBinaryGrey;publicclassOCRTest{staticpublicvoid main(String[] args){ OCR l =new OCR(0.70f);// will go to com/github/axet/lookup/fonts folder and load all font// familys (here is only font_1 family in this library) l.loadFontsDirectory(OCRTest.class,newFile("fonts"));// example how to load only one family// "com/github/axet/lookup/fonts/font_1" l.loadFont(OCRTest.class,newFile("fonts","font_1"));String str ="";// recognize using all familys set str = l.recognize(Capture.load(OCRTest.class,"test3.png"));System.out.println(str);// recognize using only one family set str = l.recognize(Capture.load(OCRTest.class,"test3.png"),"font_1");System.out.println(str);// recognize using only one family set and rectangleImageBinaryGrey i =newImageBinaryGrey(Capture.load(OCRTest.class,"full.png")); str = l.recognize(i,1285,654,1343,677, l.getSymbols("font_1"));System.out.println(str);}}