tencentcloud-sdk-ocr 3.0.1188 → 3.0.1191
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20181119/models.rb +13 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 479d14b7a701cf279fd485a080cc75ecc553e570
|
|
4
|
+
data.tar.gz: a46db84b7a18517915b2424c97e633929094994b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b439e99977e239270d6f8823c43dd4f1cb7628b5ef44f266b62e190c5336bcf5a945c9706f9cd0c7e3e6be1468b73f4c74b87ae17fc3b93326b6c0739f63bdd4
|
|
7
|
+
data.tar.gz: 488fc0fcf60bd3b292d0efcc7f158cba076e55f266d510b377a72a2926f3fd8b8f20dfd59dde79ba3b5f86bd38b8821ebb0334e1de415640954777e253656a03
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1191
|
data/lib/v20181119/models.rb
CHANGED
|
@@ -5948,14 +5948,17 @@ module TencentCloud
|
|
|
5948
5948
|
# @type Rect: :class:`Tencentcloud::Ocr.v20181119.models.Rect`
|
|
5949
5949
|
# @param Color: 识别出的车牌颜色,目前支持颜色包括 “白”、“黑”、“蓝”、“绿“、“黄”、“黄绿”、“临牌”、“喷漆”、“其它”。
|
|
5950
5950
|
# @type Color: String
|
|
5951
|
+
# @param LicensePlateCategory: 车牌类别, 如: 实体车牌、非实体车牌
|
|
5952
|
+
# @type LicensePlateCategory: String
|
|
5951
5953
|
|
|
5952
|
-
attr_accessor :Number, :Confidence, :Rect, :Color
|
|
5954
|
+
attr_accessor :Number, :Confidence, :Rect, :Color, :LicensePlateCategory
|
|
5953
5955
|
|
|
5954
|
-
def initialize(number=nil, confidence=nil, rect=nil, color=nil)
|
|
5956
|
+
def initialize(number=nil, confidence=nil, rect=nil, color=nil, licenseplatecategory=nil)
|
|
5955
5957
|
@Number = number
|
|
5956
5958
|
@Confidence = confidence
|
|
5957
5959
|
@Rect = rect
|
|
5958
5960
|
@Color = color
|
|
5961
|
+
@LicensePlateCategory = licenseplatecategory
|
|
5959
5962
|
end
|
|
5960
5963
|
|
|
5961
5964
|
def deserialize(params)
|
|
@@ -5966,6 +5969,7 @@ module TencentCloud
|
|
|
5966
5969
|
@Rect.deserialize(params['Rect'])
|
|
5967
5970
|
end
|
|
5968
5971
|
@Color = params['Color']
|
|
5972
|
+
@LicensePlateCategory = params['LicensePlateCategory']
|
|
5969
5973
|
end
|
|
5970
5974
|
end
|
|
5971
5975
|
|
|
@@ -5997,21 +6001,24 @@ module TencentCloud
|
|
|
5997
6001
|
# @type Confidence: Integer
|
|
5998
6002
|
# @param Rect: 文本行在原图片中的像素坐标框。
|
|
5999
6003
|
# @type Rect: :class:`Tencentcloud::Ocr.v20181119.models.Rect`
|
|
6000
|
-
# @param Color: 识别出的车牌颜色,目前支持颜色包括
|
|
6004
|
+
# @param Color: 识别出的车牌颜色,目前支持颜色包括 “白”、“黑”、“蓝”、“绿”、“黄”、“黄绿”、“临牌”、“喷漆”、“其它”。
|
|
6001
6005
|
# @type Color: String
|
|
6002
6006
|
# @param LicensePlateInfos: 全部车牌信息。
|
|
6003
6007
|
# @type LicensePlateInfos: Array
|
|
6008
|
+
# @param LicensePlateCategory: 车牌类别, 如: 实体车牌、非实体车牌 示例值:实体车牌
|
|
6009
|
+
# @type LicensePlateCategory: String
|
|
6004
6010
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6005
6011
|
# @type RequestId: String
|
|
6006
6012
|
|
|
6007
|
-
attr_accessor :Number, :Confidence, :Rect, :Color, :LicensePlateInfos, :RequestId
|
|
6013
|
+
attr_accessor :Number, :Confidence, :Rect, :Color, :LicensePlateInfos, :LicensePlateCategory, :RequestId
|
|
6008
6014
|
|
|
6009
|
-
def initialize(number=nil, confidence=nil, rect=nil, color=nil, licenseplateinfos=nil, requestid=nil)
|
|
6015
|
+
def initialize(number=nil, confidence=nil, rect=nil, color=nil, licenseplateinfos=nil, licenseplatecategory=nil, requestid=nil)
|
|
6010
6016
|
@Number = number
|
|
6011
6017
|
@Confidence = confidence
|
|
6012
6018
|
@Rect = rect
|
|
6013
6019
|
@Color = color
|
|
6014
6020
|
@LicensePlateInfos = licenseplateinfos
|
|
6021
|
+
@LicensePlateCategory = licenseplatecategory
|
|
6015
6022
|
@RequestId = requestid
|
|
6016
6023
|
end
|
|
6017
6024
|
|
|
@@ -6031,6 +6038,7 @@ module TencentCloud
|
|
|
6031
6038
|
@LicensePlateInfos << licenseplateinfo_tmp
|
|
6032
6039
|
end
|
|
6033
6040
|
end
|
|
6041
|
+
@LicensePlateCategory = params['LicensePlateCategory']
|
|
6034
6042
|
@RequestId = params['RequestId']
|
|
6035
6043
|
end
|
|
6036
6044
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-ocr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1191
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-12-
|
|
11
|
+
date: 2025-12-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|