tencentcloud-sdk-nodejs-ocr 4.1.8 → 4.1.9
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
@@ -614,6 +614,14 @@ export interface WordItem {
|
|
614
614
|
* 四点坐标
|
615
615
|
*/
|
616
616
|
Coord?: Polygon;
|
617
|
+
/**
|
618
|
+
* 描述性信息
|
619
|
+
*/
|
620
|
+
AdvancedInfo?: string;
|
621
|
+
/**
|
622
|
+
* 单词的四点坐标
|
623
|
+
*/
|
624
|
+
WordCoord?: Array<WordPolygon>;
|
617
625
|
}
|
618
626
|
/**
|
619
627
|
* MLIDPassportOCR请求参数结构体
|
@@ -1836,6 +1844,7 @@ export interface SmartStructuralProRequest {
|
|
1836
1844
|
AirWayBill -- 航空运单识别模板
|
1837
1845
|
DispatchWeightNote -- 磅单发货单识别模板
|
1838
1846
|
ReceiptWeightNote -- 磅单收货单识别模板
|
1847
|
+
ArticalRecognize -- 手写作文模版
|
1839
1848
|
*/
|
1840
1849
|
ConfigId?: string;
|
1841
1850
|
/**
|
@@ -1846,6 +1855,10 @@ export interface SmartStructuralProRequest {
|
|
1846
1855
|
* 是否开启父子key识别,默认是
|
1847
1856
|
*/
|
1848
1857
|
OutputParentKey?: boolean;
|
1858
|
+
/**
|
1859
|
+
* 模版的单个属性配置
|
1860
|
+
*/
|
1861
|
+
ConfigAdvanced?: ConfigAdvanced;
|
1849
1862
|
}
|
1850
1863
|
/**
|
1851
1864
|
* RecognizeTableOCR返回参数结构体
|
@@ -7970,6 +7983,15 @@ export interface DutyPaidProofOCRRequest {
|
|
7970
7983
|
*/
|
7971
7984
|
PdfPageNumber?: number;
|
7972
7985
|
}
|
7986
|
+
/**
|
7987
|
+
* 支持模版的单个属性配置
|
7988
|
+
*/
|
7989
|
+
export interface ConfigAdvanced {
|
7990
|
+
/**
|
7991
|
+
* 模版的单个属性配置
|
7992
|
+
*/
|
7993
|
+
Scene?: string;
|
7994
|
+
}
|
7973
7995
|
/**
|
7974
7996
|
* RecognizeHealthCodeOCR返回参数结构体
|
7975
7997
|
*/
|
@@ -10316,6 +10338,19 @@ export interface LicensePlateInfo {
|
|
10316
10338
|
*/
|
10317
10339
|
Color?: string;
|
10318
10340
|
}
|
10341
|
+
/**
|
10342
|
+
* 单词坐标信息
|
10343
|
+
*/
|
10344
|
+
export interface WordPolygon {
|
10345
|
+
/**
|
10346
|
+
* 文本块内容
|
10347
|
+
*/
|
10348
|
+
DetectedText?: string;
|
10349
|
+
/**
|
10350
|
+
* 四点坐标
|
10351
|
+
*/
|
10352
|
+
Coord?: Polygon;
|
10353
|
+
}
|
10319
10354
|
/**
|
10320
10355
|
* 单字在原图中的坐标,以四个顶点坐标表示,以左上角为起点,顺时针返回。
|
10321
10356
|
*/
|