c \ # 이미지 인식 Asprise - OCR

3445 단어 asp
Asprise - OCR 사용.
Asprise - OCR 다운로드 주소:
http://asprise.com/product/ocr/download.php?lang=csharp
이 중 사용 해 야 할 dll 3 개 는 AspriseOCR. dll, DevIL. dll, ILU. dll 이다.
주의해 야 할 것 은 이 몇 개의. dll 은 vc 가 쓴 인용 입 니 다. 프로그램 에서 DllImport 로 인용 해 야 합 니 다. 핵심 코드:
[DllImport("AspriseOCR.dll", EntryPoint = "OCR", CallingConvention = CallingConvention.Cdecl)]



public static extern IntPtr OCR(string file, int type);



[DllImport("AspriseOCR.dll", EntryPoint = "OCRpart", CallingConvention = CallingConvention.Cdecl)]



static extern IntPtr OCRpart(string file, int type, int startX, int startY, int width, int height);



[DllImport("AspriseOCR.dll", EntryPoint = "OCRBarCodes", CallingConvention = CallingConvention.Cdecl)]



static extern IntPtr OCRBarCodes(string file, int type);



[DllImport("AspriseOCR.dll", EntryPoint = "OCRpartBarCodes", CallingConvention = CallingConvention.Cdecl)]



static extern IntPtr OCRpartBarCodes(string file, int type, int startX, int startY, int width, int height);

이상 은 비 위탁 관리 코드 의 인용 방법 입 니 다. 항목 에서 인용 하지 않 아 도 됩 니 다 ()
 
MessageBox.Show(Marshal.PtrToStringAnsi(OCRpart(img_path, -1, startX, startY, width, height)));

좋은 웹페이지 즐겨찾기