tencentcloud-sdk-nodejs-ocr 4.1.74 → 4.1.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -707,7 +707,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
707
707
|
*/
|
708
708
|
QuotaInvoiceOCR(req: QuotaInvoiceOCRRequest, cb?: (error: string, rep: QuotaInvoiceOCRResponse) => void): Promise<QuotaInvoiceOCRResponse>;
|
709
709
|
/**
|
710
|
-
*
|
710
|
+
* <b>此接口为通用手写体识别的旧版本服务,不再进行服务升级,建议您使用识别能力更强、服务性能更优的<a href="https://cloud.tencent.com/document/product/866/34937">通用印刷体识别(高精度)识别服务</a>。</b>
|
711
|
+
|
712
|
+
本接口支持图片内手写体文字的检测和识别,针对手写字体无规则、字迹潦草、模糊等特点进行了识别能力的增强。
|
711
713
|
|
712
714
|
默认接口请求频率限制:10次/秒。
|
713
715
|
*/
|
@@ -825,7 +825,9 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
825
825
|
return this.request("QuotaInvoiceOCR", req, cb);
|
826
826
|
}
|
827
827
|
/**
|
828
|
-
*
|
828
|
+
* <b>此接口为通用手写体识别的旧版本服务,不再进行服务升级,建议您使用识别能力更强、服务性能更优的<a href="https://cloud.tencent.com/document/product/866/34937">通用印刷体识别(高精度)识别服务</a>。</b>
|
829
|
+
|
830
|
+
本接口支持图片内手写体文字的检测和识别,针对手写字体无规则、字迹潦草、模糊等特点进行了识别能力的增强。
|
829
831
|
|
830
832
|
默认接口请求频率限制:10次/秒。
|
831
833
|
*/
|
@@ -2782,18 +2782,11 @@ export interface TableCellInfo {
|
|
2782
2782
|
*/
|
2783
2783
|
export interface GeneralHandwritingOCRRequest {
|
2784
2784
|
/**
|
2785
|
-
* 图片的 Base64
|
2786
|
-
支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。
|
2787
|
-
支持的图片大小:所下载图片经Base64编码后不超过 7M。
|
2788
|
-
图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
|
2785
|
+
* 图片的 Base64 值。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经Base64编码后不超过 10M。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
|
2789
2786
|
*/
|
2790
2787
|
ImageBase64?: string;
|
2791
2788
|
/**
|
2792
|
-
* 图片的 Url
|
2793
|
-
支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。
|
2794
|
-
支持的图片大小:所下载图片经 Base64 编码后不超过7M。图片下载时间不超过 3 秒。
|
2795
|
-
图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。
|
2796
|
-
非腾讯云存储的 Url 速度和稳定性可能受一定影响。
|
2789
|
+
* 图片的 Url 地址。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经 Base64 编码后不超过 10M。图片下载时间不超过 3 秒。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。
|
2797
2790
|
*/
|
2798
2791
|
ImageUrl?: string;
|
2799
2792
|
/**
|