12 lines
232 B
Java
12 lines
232 B
Java
|
|
package com.klp.service;
|
||
|
|
|
||
|
|
public interface ITesseractOcrService {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 识别网络图片
|
||
|
|
* @param imageUrl 图片URL
|
||
|
|
* @return 识别结果
|
||
|
|
*/
|
||
|
|
String recognizeText(String imageUrl) throws Exception;
|
||
|
|
}
|