Class: TencentCloud::Iotexplorer::V20190423::VisionDetectedObject
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotexplorer::V20190423::VisionDetectedObject
- Defined in:
- lib/v20190423/models.rb
Overview
目标检测算法检测到的目标详情
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(time = nil, classname = nil, boundingbox = nil, confidence = nil) ⇒ VisionDetectedObject
constructor
A new instance of VisionDetectedObject.
Constructor Details
#initialize(time = nil, classname = nil, boundingbox = nil, confidence = nil) ⇒ VisionDetectedObject
Returns a new instance of VisionDetectedObject.
14619 14620 14621 14622 14623 14624 |
# File 'lib/v20190423/models.rb', line 14619 def initialize(time=nil, classname=nil, boundingbox=nil, confidence=nil) @Time = time @ClassName = classname @BoundingBox = boundingbox @Confidence = confidence end |
Instance Attribute Details
#BoundingBox ⇒ Object
14617 14618 14619 |
# File 'lib/v20190423/models.rb', line 14617 def BoundingBox @BoundingBox end |
#ClassName ⇒ Object
14617 14618 14619 |
# File 'lib/v20190423/models.rb', line 14617 def ClassName @ClassName end |
#Confidence ⇒ Object
14617 14618 14619 |
# File 'lib/v20190423/models.rb', line 14617 def Confidence @Confidence end |
#Time ⇒ Object
14617 14618 14619 |
# File 'lib/v20190423/models.rb', line 14617 def Time @Time end |
Instance Method Details
#deserialize(params) ⇒ Object
14626 14627 14628 14629 14630 14631 |
# File 'lib/v20190423/models.rb', line 14626 def deserialize(params) @Time = params['Time'] @ClassName = params['ClassName'] @BoundingBox = params['BoundingBox'] @Confidence = params['Confidence'] end |