Classes | |
| class | Predictor |
Functions | |
| def | draw_all_detection |
| def | generate_proposals |
| def | im_detect |
| def | im_proposal |
| def | pred_eval |
| def | vis_all_detection |
| def core.tester.draw_all_detection | ( | im_array, | |
| detections, | |||
| class_names, | |||
| scale, | |||
| cfg, | |||
threshold = 1e-1 |
|||
| ) |
| def core.tester.generate_proposals | ( | predictor, | |
| test_data, | |||
| imdb, | |||
| cfg, | |||
vis = False, |
|||
thresh = 0. |
|||
| ) |
| def core.tester.im_detect | ( | predictor, | |
| data_batch, | |||
| data_names, | |||
| scales, | |||
| cfg | |||
| ) |
| def core.tester.im_proposal | ( | predictor, | |
| data_batch, | |||
| data_names, | |||
| scales | |||
| ) |
| def core.tester.pred_eval | ( | predictor, | |
| test_data, | |||
| imdb, | |||
| cfg, | |||
vis = False, |
|||
thresh = 1e-3, |
|||
logger = None, |
|||
ignore_cache = True |
|||
| ) |
wrapper for calculating offline validation for faster data analysis in this example, all threshold are set by hand :param predictor: Predictor :param test_data: data iterator, must be non-shuffle :param imdb: image database :param vis: controls visualization :param thresh: valid detection threshold :return:
| def core.tester.vis_all_detection | ( | im_array, | |
| detections, | |||
| class_names, | |||
| scale, | |||
| cfg, | |||
threshold = 1e-3 |
|||
| ) |