
Detectron
努力奋斗-不断进化
认真
展开
-
im_detect_bbox(model, im, target_scale, target_max_size, boxes=None)中间输出结果
2018.12.5 test.py IOU 计算中间结果print (rois)boxes(1000, 4)[[293.70677124 216.82310234 347.8397644 316.01534912] [ 0. 137.32425522 192.77882927 319.02986984] [547.2263681 300.37179657 587...原创 2018-12-05 17:28:04 · 1289 阅读 · 0 评论 -
Detectron.pytorch代码解读--tools test_net.py
代码这个程序的主要目的是 :"""Perform inference on one or more datasets."""在一个或多个测试集上进行测试最后返回结果包括 预测的结果文件.jsondetections.pkl分析结果 map recall等(当然是调用其他函数实现的)本程序的代码功能是解析输入的参数 等主要的函数在于 run_infer...原创 2019-01-23 14:41:38 · 621 阅读 · 0 评论 -
Detectron.pytorch代码解读--lib core test_engine.py
从小函数开始 代码1 test_net()def test_net( args, dataset_name, proposal_file, output_dir, ind_range=None, gpu_id=0): """Run inference on all images in...原创 2019-01-23 15:20:21 · 579 阅读 · 0 评论