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.
14589 14590 14591 14592 14593 14594 |
# File 'lib/v20190423/models.rb', line 14589 def initialize(time=nil, classname=nil, boundingbox=nil, confidence=nil) @Time = time @ClassName = classname @BoundingBox = boundingbox @Confidence = confidence end |
Instance Attribute Details
#BoundingBox ⇒ Object
14587 14588 14589 |
# File 'lib/v20190423/models.rb', line 14587 def BoundingBox @BoundingBox end |
#ClassName ⇒ Object
14587 14588 14589 |
# File 'lib/v20190423/models.rb', line 14587 def ClassName @ClassName end |
#Confidence ⇒ Object
14587 14588 14589 |
# File 'lib/v20190423/models.rb', line 14587 def Confidence @Confidence end |
#Time ⇒ Object
14587 14588 14589 |
# File 'lib/v20190423/models.rb', line 14587 def Time @Time end |
Instance Method Details
#deserialize(params) ⇒ Object
14596 14597 14598 14599 14600 14601 |
# File 'lib/v20190423/models.rb', line 14596 def deserialize(params) @Time = params['Time'] @ClassName = params['ClassName'] @BoundingBox = params['BoundingBox'] @Confidence = params['Confidence'] end |