2019. 10. 1.
C#/C# 프로그래밍2019. 10. 1.
C# tesseract를 이용한 OCR
2019/10/01 - [프로그래밍/C# 프로그래밍] - C# tesseract 설치 tesseract 설치는 링크참조 프로젝트를 만들어 줍시다. 저는 ocrtest라고 만들었습니다. 위 그림과 같이 picturebox, textbox, button3개를 추가해줍니다 using문 추가 using Tesseract; 버튼1 클릭 이벤트 추가 private void Button1_Click(object sender, EventArgs e) { string imgfile = string.Empty; OpenFileDialog dialog = new OpenFileDialog(); dialog.InitialDirectory = @"C:\"; if (dialog.ShowDialog() == DialogResult..