From 6e423e861d7c964d5aab3d943cbd8d285086b4e5 Mon Sep 17 00:00:00 2001 From: david Date: Fri, 28 Oct 2011 10:55:17 +0000 Subject: [PATCH] Update member name in comment. --- FingerPrintResults.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/FingerPrintResults.h b/FingerPrintResults.h index 2dbcd9d96..5353a001e 100644 --- a/FingerPrintResults.h +++ b/FingerPrintResults.h @@ -116,17 +116,17 @@ class FingerPrintResults { virtual ~FingerPrintResults(); double accuracy[MAX_FP_RESULTS]; /* Percentage of match (1.0 == perfect - match) in same order as pritns[] below */ + match) in same order as matches[] below */ FingerMatch *matches[MAX_FP_RESULTS]; /* ptrs to matching references -- highest accuracy matches first */ - int num_perfect_matches; /* Number of 1.0 accuracy matches in prints[] */ - int num_matches; /* Total number of matches in prints[] */ + int num_perfect_matches; /* Number of 1.0 accuracy matches in matches[] */ + int num_matches; /* Total number of matches in matches[] */ int overall_results; /* OSSCAN_TOOMANYMATCHES, OSSCAN_NOMATCHES, OSSCAN_SUCCESS, etc */ /* Ensures that the results are available and then returns them. You should only call this AFTER all matching has been completed - (because results are cached and won't change if new prints[] are + (because results are cached and won't change if new matches[] are added.) All OS Classes in the results will be unique, and if there are any perfect (accuracy 1.0) matches, only those will be returned */