2024-11-09 22:34:58 +03:00
|
|
|
using OcrClient.Models;
|
|
|
|
|
|
|
|
namespace OcrClient.Services;
|
|
|
|
|
|
|
|
public interface IOcrClient
|
|
|
|
{
|
2024-11-13 23:42:28 +03:00
|
|
|
public Task<IEnumerable<object[,]>> ProcessImage(string base64Image, string xFolderId, string apiKey);
|
2024-11-09 22:34:58 +03:00
|
|
|
}
|