| 121 | // ---------------------------------------------------------------------------------------- |
| 122 | |
| 123 | inline void serialize ( |
| 124 | const test_box_overlap& item, |
| 125 | std::ostream& out |
| 126 | ) |
| 127 | { |
| 128 | serialize(item.get_iou_thresh(), out); |
| 129 | serialize(item.get_percent_covered_thresh(), out); |
| 130 | } |
| 131 | |
| 132 | inline void deserialize ( |
| 133 | test_box_overlap& item, |
nothing calls this directly
no test coverage detected