feat: 新增tesseract OCR服务接口

This commit is contained in:
JR
2025-08-01 15:15:17 +08:00
parent 21e354258e
commit 0e50b769e9
9 changed files with 142 additions and 202 deletions

View File

@@ -0,0 +1,11 @@
package com.klp.service;
public interface ITesseractOcrService {
/**
* 识别网络图片
* @param imageUrl 图片URL
* @return 识别结果
*/
String recognizeText(String imageUrl) throws Exception;
}