RhSolutions-AddIn/RhSolutions.AddIn/Services/IOcrClient.cs

9 lines
167 B
C#
Raw Permalink Normal View History

2024-11-14 00:16:58 +03:00
using System.Threading.Tasks;
2024-11-09 22:34:58 +03:00
2024-11-14 00:16:58 +03:00
namespace RhSolutions.Services;
2024-11-09 22:34:58 +03:00
public interface IOcrClient
{
public Task<IEnumerable<object[,]>> ProcessImage(string base64Image);
2024-11-09 22:34:58 +03:00
}