From fa88ae6a30a24c4431ad22dd694621ccdddefd77 Mon Sep 17 00:00:00 2001 From: JordanCheney Date: Wed, 3 Dec 2014 12:10:41 -0500 Subject: [PATCH] Documented the ignore flag --- openbr/core/eval.cpp | 4 ++++ 1 file changed, 4 insertions(+), 0 deletions(-) diff --git a/openbr/core/eval.cpp b/openbr/core/eval.cpp index b93f998..2e708d7 100755 --- a/openbr/core/eval.cpp +++ b/openbr/core/eval.cpp @@ -646,6 +646,10 @@ struct Detection { QRectF boundingBox; float confidence; + // The ignore flag is useful when certain faces in an image should be ignored + // and should not effect detection performance. Predicted detections that overlap + // with an ignored truth detection will not count as a true positive, false positive, + // true negative, or false negative, it will simply be ignored. bool ignore; Detection() {} -- libgit2 0.21.4