class Recog::Matcher
Attributes
fingerprints[R]
multi_match[R]
reporter[R]
Public Class Methods
new(fingerprints, reporter, multi_match)
click to toggle source
@param fingerprints Array of [Recog::Fingerprint] The list of fingerprints from the Recog DB to find possible matches. @param reporter [Recog::MatchReporter] The reporting structure that holds the matches and fails @param #multi_match [Boolean] specifies whether or not to use multi-match (true) or not (false)
# File lib/recog/matcher.rb, line 8 def initialize(fingerprints, reporter, multi_match) @fingerprints = fingerprints @reporter = reporter @multi_match = multi_match end