tencentcloud-sdk-bda 3.0.379 → 3.0.380
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/v20200324/models.rb +14 -4
- 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: 1379c96acfb71261be6fee12484fc236aca77544
|
4
|
+
data.tar.gz: 17cbab5e4e9bbfd33c9a8d8c19b1b88b52308e4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe105269f01baf23a1a84dba4fc21c2e4cf2987fdfd4846216a65a0568eeee2f8c3ebdc8051ec90529f4e554539477c5d78cad68c42ec92a6406bb3ca8f2aba0
|
7
|
+
data.tar.gz: 246750713b84b6c975ff4eab726d19ea71a99ccee51751c582de16c0e9804567f6c0b67ee62dfed1c136e0b76e9dbf8ca0cde2d7f2eeec38728caffdfe8f0f53
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.380
|
data/lib/v20200324/models.rb
CHANGED
@@ -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
|
-
|
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.
|
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-
|
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
|