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
|
|
|
|
{
|
2024-11-14 00:23:38 +03:00
|
|
|
public Task<IEnumerable<object[,]>> ProcessImage(string base64Image);
|
2024-11-09 22:34:58 +03:00
|
|
|
}
|