(detections)
| 141 | :return: A list of tuples of found face locations in css (top, right, bottom, left) order |
| 142 | """ |
| 143 | def convert_cnn_detections_to_css(detections): |
| 144 | return [_trim_css_to_bounds(_rect_to_css(face.rect), images[0].shape) for face in detections] |
| 145 | |
| 146 | raw_detections_batched = _raw_face_locations_batched(images, number_of_times_to_upsample, batch_size) |
| 147 |
nothing calls this directly
no test coverage detected