ocr_pubfuncs.h 385 B

123456789101112
  1. #pragma once
  2. #include "OcrBase.h"
  3. #include "Ocr_Dict.h"
  4. #include "OcrScreen.h"
  5. //get all matchs in the dict
  6. BOOL OcrFindMatchs(Ocr_Dict &Dict, OcrScreen &fullPic, RECT &area, OCRCOLOR color, ULONG sim, string OUT &str );
  7. //get match node's position
  8. BOOL FindMatchPoint(Ocr_Dict &Dict, OcrScreen &fullPic, RECT &area, OCRCOLOR color, ULONG sim, string IN &str, ULONG &x, ULONG &y);