public class ExactFingerprintMatcher extends FingerprintMatcher
matcherName, minimum_score
Constructor and Description |
---|
ExactFingerprintMatcher()
Constructor that sets the minimum score to use for matching two fingerprints to zero
|
Modifier and Type | Method and Description |
---|---|
int |
getScore(byte[] fp1,
byte[] fp2)
Determines a similarity score for these two fingerprints
|
static void |
main(java.lang.String[] args) |
boolean |
match(byte[] fp1,
byte[] fp2)
Determines that the two fingerprints are matching if their byte arrays are equal
|
getMatcherName, getMinimumScore, getScoreXML, match, setMinimumScore
public ExactFingerprintMatcher()
public boolean match(byte[] fp1, byte[] fp2)
match
in class FingerprintMatcher
fp1
- the byte array containing the first fingerprintfp2
- the byte array containing the second fingerprintpublic int getScore(byte[] fp1, byte[] fp2)
getScore
in class FingerprintMatcher
fp1
- the byte array containing the first fingerprintfp2
- the byte array containing the second fingerprintpublic static void main(java.lang.String[] args)