mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-15 21:03:42 +08:00
14 lines
259 B
C#
14 lines
259 B
C#
using OpenCvSharp;
|
|
using Sdcb.PaddleOCR;
|
|
|
|
namespace BetterGenshinImpact.Core.Recognition.OCR;
|
|
|
|
public interface IOcrService
|
|
{
|
|
public string Ocr(Mat mat);
|
|
|
|
public string OcrWithoutDetector(Mat mat);
|
|
|
|
public PaddleOcrResult OcrResult(Mat mat);
|
|
}
|