| 767 | : boundingBox(boundingBox_), confidence(confidence_), ignore(ignore_) {} |
| 768 | |
| 769 | float area() const { return boundingBox.width() * boundingBox.height(); } |
| 770 | float overlap(const Detection &other) const |
| 771 | { |
| 772 | const Detection intersection(boundingBox.intersected(other.boundingBox)); |
no outgoing calls
no test coverage detected