9 lines
165 B
C#
9 lines
165 B
C#
using System.Drawing;
|
|
|
|
namespace Poe2Trade.Screen;
|
|
|
|
public interface IOcrEngine : IDisposable
|
|
{
|
|
string Name { get; }
|
|
OcrResponse Recognize(Bitmap bitmap);
|
|
}
|