tencentcloud-sdk-iotexplorer 3.0.1117 → 3.0.1127
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/v20190423/models.rb +48 -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: 0217b58a9117e173730f22d284752e977dae3e93
|
4
|
+
data.tar.gz: 927a5ad616be21ef2bcc1bd5039970d39acc0de6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a39e0d948283792308a1c8a039fe0bee2588af0ba28d7f7bc72301dc9fda4f7615e98100dc397d80e08c281a19267767d2188cfa0351c44c3b876df8d6bbd360
|
7
|
+
data.tar.gz: 355756e1e97a5687962c4c069624ac26f710dc7a7e026739ac481bfbe7fb465cdfa2ac8df3cf5a6abad524e295371eb6cc0618554244cdecca3a748ec1f71578
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1127
|
data/lib/v20190423/models.rb
CHANGED
@@ -2237,10 +2237,16 @@ module TencentCloud
|
|
2237
2237
|
# @type SummaryQOS: String
|
2238
2238
|
# @param SummaryConfig: 摘要输出配置
|
2239
2239
|
# @type SummaryConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionSummaryConfig`
|
2240
|
+
# @param ServiceType: 算法类型,可能取值:
|
2241
|
+
# - `Summary`:视频/图片摘要
|
2242
|
+
# - `ObjectDetect`:目标检测
|
2243
|
+
# @type ServiceType: String
|
2244
|
+
# @param ObjectDetectConfig: 目标检测配置
|
2245
|
+
# @type ObjectDetectConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionObjectDetectConfig`
|
2240
2246
|
|
2241
|
-
attr_accessor :ProductId, :DeviceName, :InputURL, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS, :SummaryConfig
|
2247
|
+
attr_accessor :ProductId, :DeviceName, :InputURL, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS, :SummaryConfig, :ServiceType, :ObjectDetectConfig
|
2242
2248
|
|
2243
|
-
def initialize(productid=nil, devicename=nil, inputurl=nil, customid=nil, enablesearch=nil, starttimems=nil, endtimems=nil, config=nil, iscustomdevice=nil, inputtype=nil, summaryqos=nil, summaryconfig=nil)
|
2249
|
+
def initialize(productid=nil, devicename=nil, inputurl=nil, customid=nil, enablesearch=nil, starttimems=nil, endtimems=nil, config=nil, iscustomdevice=nil, inputtype=nil, summaryqos=nil, summaryconfig=nil, servicetype=nil, objectdetectconfig=nil)
|
2244
2250
|
@ProductId = productid
|
2245
2251
|
@DeviceName = devicename
|
2246
2252
|
@InputURL = inputurl
|
@@ -2253,6 +2259,8 @@ module TencentCloud
|
|
2253
2259
|
@InputType = inputtype
|
2254
2260
|
@SummaryQOS = summaryqos
|
2255
2261
|
@SummaryConfig = summaryconfig
|
2262
|
+
@ServiceType = servicetype
|
2263
|
+
@ObjectDetectConfig = objectdetectconfig
|
2256
2264
|
end
|
2257
2265
|
|
2258
2266
|
def deserialize(params)
|
@@ -2271,6 +2279,11 @@ module TencentCloud
|
|
2271
2279
|
@SummaryConfig = VisionSummaryConfig.new
|
2272
2280
|
@SummaryConfig.deserialize(params['SummaryConfig'])
|
2273
2281
|
end
|
2282
|
+
@ServiceType = params['ServiceType']
|
2283
|
+
unless params['ObjectDetectConfig'].nil?
|
2284
|
+
@ObjectDetectConfig = VisionObjectDetectConfig.new
|
2285
|
+
@ObjectDetectConfig.deserialize(params['ObjectDetectConfig'])
|
2286
|
+
end
|
2274
2287
|
end
|
2275
2288
|
end
|
2276
2289
|
|
@@ -8244,10 +8257,16 @@ module TencentCloud
|
|
8244
8257
|
# @type SummaryQOS: String
|
8245
8258
|
# @param SummaryConfig: 摘要输出配置
|
8246
8259
|
# @type SummaryConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionSummaryConfig`
|
8260
|
+
# @param ServiceType: 算法类型,可能取值:
|
8261
|
+
# - `Summary`:视频/图片摘要
|
8262
|
+
# - `ObjectDetect`:目标检测
|
8263
|
+
# @type ServiceType: String
|
8264
|
+
# @param ObjectDetectConfig: 目标检测配置
|
8265
|
+
# @type ObjectDetectConfig: :class:`Tencentcloud::Iotexplorer.v20190423.models.VisionObjectDetectConfig`
|
8247
8266
|
|
8248
|
-
attr_accessor :ProductId, :DeviceName, :InputURL, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS, :SummaryConfig
|
8267
|
+
attr_accessor :ProductId, :DeviceName, :InputURL, :CustomId, :EnableSearch, :StartTimeMs, :EndTimeMs, :Config, :IsCustomDevice, :InputType, :SummaryQOS, :SummaryConfig, :ServiceType, :ObjectDetectConfig
|
8249
8268
|
|
8250
|
-
def initialize(productid=nil, devicename=nil, inputurl=nil, customid=nil, enablesearch=nil, starttimems=nil, endtimems=nil, config=nil, iscustomdevice=nil, inputtype=nil, summaryqos=nil, summaryconfig=nil)
|
8269
|
+
def initialize(productid=nil, devicename=nil, inputurl=nil, customid=nil, enablesearch=nil, starttimems=nil, endtimems=nil, config=nil, iscustomdevice=nil, inputtype=nil, summaryqos=nil, summaryconfig=nil, servicetype=nil, objectdetectconfig=nil)
|
8251
8270
|
@ProductId = productid
|
8252
8271
|
@DeviceName = devicename
|
8253
8272
|
@InputURL = inputurl
|
@@ -8260,6 +8279,8 @@ module TencentCloud
|
|
8260
8279
|
@InputType = inputtype
|
8261
8280
|
@SummaryQOS = summaryqos
|
8262
8281
|
@SummaryConfig = summaryconfig
|
8282
|
+
@ServiceType = servicetype
|
8283
|
+
@ObjectDetectConfig = objectdetectconfig
|
8263
8284
|
end
|
8264
8285
|
|
8265
8286
|
def deserialize(params)
|
@@ -8278,6 +8299,11 @@ module TencentCloud
|
|
8278
8299
|
@SummaryConfig = VisionSummaryConfig.new
|
8279
8300
|
@SummaryConfig.deserialize(params['SummaryConfig'])
|
8280
8301
|
end
|
8302
|
+
@ServiceType = params['ServiceType']
|
8303
|
+
unless params['ObjectDetectConfig'].nil?
|
8304
|
+
@ObjectDetectConfig = VisionObjectDetectConfig.new
|
8305
|
+
@ObjectDetectConfig.deserialize(params['ObjectDetectConfig'])
|
8306
|
+
end
|
8281
8307
|
end
|
8282
8308
|
end
|
8283
8309
|
|
@@ -11714,6 +11740,24 @@ module TencentCloud
|
|
11714
11740
|
end
|
11715
11741
|
end
|
11716
11742
|
|
11743
|
+
# 目标检测配置
|
11744
|
+
class VisionObjectDetectConfig < TencentCloud::Common::AbstractModel
|
11745
|
+
# @param DetectTypes: 检测类别,可选值:
|
11746
|
+
# - `adult`:成年人
|
11747
|
+
# - `child`:儿童
|
11748
|
+
# @type DetectTypes: Array
|
11749
|
+
|
11750
|
+
attr_accessor :DetectTypes
|
11751
|
+
|
11752
|
+
def initialize(detecttypes=nil)
|
11753
|
+
@DetectTypes = detecttypes
|
11754
|
+
end
|
11755
|
+
|
11756
|
+
def deserialize(params)
|
11757
|
+
@DetectTypes = params['DetectTypes']
|
11758
|
+
end
|
11759
|
+
end
|
11760
|
+
|
11717
11761
|
# TWeSee 语义理解结果
|
11718
11762
|
class VisionRecognitionResult < TencentCloud::Common::AbstractModel
|
11719
11763
|
# @param Status: 任务状态(1:分析失败;2:下载/读取视频/图片失败;3:成功;4:执行中)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-iotexplorer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1127
|
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-08-
|
11
|
+
date: 2025-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|