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