class Argus::NavOptionVisionDetect

Constants

NB_NAVDATA_DETECTION_RESULTS

Public Class Methods

tag() click to toggle source
   # File lib/argus/nav_option_vision_detect.rb
76 def self.tag
77   NavTag::VISION_DETECT
78 end

Public Instance Methods

detections() click to toggle source
   # File lib/argus/nav_option_vision_detect.rb
72 def detections
73   @detections ||= (0...detected_count).map { |i| Detection.new(self, i) }
74 end
type_name() click to toggle source
   # File lib/argus/nav_option_vision_detect.rb
68 def type_name
69   type.map { |t| CadType::NAMES[t] }
70 end