mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-20 21:49:23 +08:00
12 lines
224 B
C#
12 lines
224 B
C#
using OpenCvSharp;
|
|
|
|
namespace BetterGenshinImpact.Core.Recognition.ONNX.SVTR;
|
|
|
|
/// <summary>
|
|
/// 文字识别推理(SVTR网络)
|
|
/// </summary>
|
|
public interface ITextInference
|
|
{
|
|
public string Inference(Mat mat);
|
|
}
|