package test4j;
import java.io.File;
import net.sourceforge.tess4j.Tesseract;
import net.sourceforge.tess4j.TesseractException;
public class test {
public static void main(String[] args) {
// TODO Auto-generated method stub
File imageFile = new File("C:/Users/swu09/Downloads/Tess4J-2.0-src/Tess4J/Korean.jpg"); Tesseract instance = Tesseract.getInstance(); // JNA Interface Mapping
instance.setDatapath("C:/Users/swu09/Downloads/Tess4J-2.0-src/Tess4J/tessdata");
// Tesseract1 instance = new Tesseract1(); // JNA Direct Mapping
System.out.println(imageFile.canRead());
try {
String result = instance.doOCR(imageFile);
System.out.println(result);
} catch (TesseractException e) {
System.err.println(e.getMessage());
}
}
}
'JAVA > 자바' 카테고리의 다른 글
자바 이미지파일 전송 서버쪽 (0) | 2015.10.29 |
---|---|
자바 tess4j import 하기 (0) | 2015.10.27 |
자바 특정 경로 안에 파일목록 출력 (0) | 2015.10.24 |
자바 Arraylist 정렬후 최소값 구하기 간단하게 (0) | 2015.10.15 |
자바 이미지 형태 비교 (0) | 2015.10.14 |