Commit fa88ae6a30a24c4431ad22dd694621ccdddefd77
1 parent
7a540d85
Documented the ignore flag
Showing
1 changed file
with
4 additions
and
0 deletions
openbr/core/eval.cpp
| ... | ... | @@ -646,6 +646,10 @@ struct Detection |
| 646 | 646 | { |
| 647 | 647 | QRectF boundingBox; |
| 648 | 648 | float confidence; |
| 649 | + // The ignore flag is useful when certain faces in an image should be ignored | |
| 650 | + // and should not effect detection performance. Predicted detections that overlap | |
| 651 | + // with an ignored truth detection will not count as a true positive, false positive, | |
| 652 | + // true negative, or false negative, it will simply be ignored. | |
| 649 | 653 | bool ignore; |
| 650 | 654 | |
| 651 | 655 | Detection() {} | ... | ... |