tencentcloud-sdk-bda 3.0.379 → 3.0.380

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200324/models.rb +14 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eab623747985381abe59611362cafd5b0fb3fdff
4
- data.tar.gz: 2f3fa732d12194819e6bd8f28c468b937b7a5930
3
+ metadata.gz: 1379c96acfb71261be6fee12484fc236aca77544
4
+ data.tar.gz: 17cbab5e4e9bbfd33c9a8d8c19b1b88b52308e4f
5
5
  SHA512:
6
- metadata.gz: 26fc3053a3af7370c9459b79f8d4656e1fa35c07f2391e7bba1a567bd7eb07e6ab400129bf6b00d2cbca79c4089ea5409053c97b0ba0d7716d355b0cce475065
7
- data.tar.gz: 4b88b8abc7132623e6dbbfe156c750ac34650d43c00cd18f04a46feca29079a5ef338922b03b23188624a87db567c2905526f6780605593893d740ebc5f50234
6
+ metadata.gz: fe105269f01baf23a1a84dba4fc21c2e4cf2987fdfd4846216a65a0568eeee2f8c3ebdc8051ec90529f4e554539477c5d78cad68c42ec92a6406bb3ca8f2aba0
7
+ data.tar.gz: 246750713b84b6c975ff4eab726d19ea71a99ccee51751c582de16c0e9804567f6c0b67ee62dfed1c136e0b76e9dbf8ca0cde2d7f2eeec38728caffdfe8f0f53
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.379
1
+ 3.0.380
@@ -673,17 +673,23 @@ module TencentCloud
673
673
  # 非腾讯云存储的Url速度和稳定性可能受一定影响。
674
674
  # 支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。
675
675
  # @type Url: String
676
+ # @param LocalBodySwitch: 人体局部关键点识别,开启后对人体局部图(例如部分身体部位)进行关键点识别,输出人体关键点坐标,默认不开启
676
677
 
677
- attr_accessor :Image, :Url
678
+ # 注意:若开启人体局部图片关键点识别,则BoundBox、Confidence返回为空。
679
+ # @type LocalBodySwitch: Boolean
680
+
681
+ attr_accessor :Image, :Url, :LocalBodySwitch
678
682
 
679
- def initialize(image=nil, url=nil)
683
+ def initialize(image=nil, url=nil, localbodyswitch=nil)
680
684
  @Image = image
681
685
  @Url = url
686
+ @LocalBodySwitch = localbodyswitch
682
687
  end
683
688
 
684
689
  def deserialize(params)
685
690
  @Image = params['Image']
686
691
  @Url = params['Url']
692
+ @LocalBodySwitch = params['LocalBodySwitch']
687
693
  end
688
694
  end
689
695
 
@@ -1033,19 +1039,23 @@ module TencentCloud
1033
1039
  # @type X: Float
1034
1040
  # @param Y: 人体关键点纵坐标
1035
1041
  # @type Y: Float
1042
+ # @param BodyScore: 关键点坐标置信度,分数取值在0-1之间,阈值建议为0.25,小于0.25认为在图中无人体关键点。
1043
+ # @type BodyScore: Float
1036
1044
 
1037
- attr_accessor :KeyPointType, :X, :Y
1045
+ attr_accessor :KeyPointType, :X, :Y, :BodyScore
1038
1046
 
1039
- def initialize(keypointtype=nil, x=nil, y=nil)
1047
+ def initialize(keypointtype=nil, x=nil, y=nil, bodyscore=nil)
1040
1048
  @KeyPointType = keypointtype
1041
1049
  @X = x
1042
1050
  @Y = y
1051
+ @BodyScore = bodyscore
1043
1052
  end
1044
1053
 
1045
1054
  def deserialize(params)
1046
1055
  @KeyPointType = params['KeyPointType']
1047
1056
  @X = params['X']
1048
1057
  @Y = params['Y']
1058
+ @BodyScore = params['BodyScore']
1049
1059
  end
1050
1060
  end
1051
1061
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-bda
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.379
4
+ version: 3.0.380
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-03 00:00:00.000000000 Z
11
+ date: 2022-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common