| 136 | namespace impl |
| 137 | { |
| 138 | inline bool contains_any_detections ( |
| 139 | const std::vector<std::vector<full_object_detection> >& detections |
| 140 | ) |
| 141 | { |
| 142 | for (unsigned long i = 0; i < detections.size(); ++i) |
| 143 | { |
| 144 | if (detections[i].size() != 0) |
| 145 | return true; |
| 146 | } |
| 147 | return false; |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | // ---------------------------------------------------------------------------------------- |
no test coverage detected