pcd_demo.py 1015 Bytes
Newer Older
wuyuefeng's avatar
Demo  
wuyuefeng committed
1
2
3
4
5
6
7
8
9
10
11
12
13
from argparse import ArgumentParser

from mmdet3d.apis import inference_detector, init_detector, show_result_meshlab


def main():
    parser = ArgumentParser()
    parser.add_argument('pcd', help='Point cloud file')
    parser.add_argument('config', help='Config file')
    parser.add_argument('checkpoint', help='Checkpoint file')
    parser.add_argument(
        '--device', default='cuda:0', help='Device used for inference')
    parser.add_argument(
14
        '--score-thr', type=float, default=0.0, help='bbox score threshold')
wuyuefeng's avatar
Demo  
wuyuefeng committed
15
16
17
18
19
20
21
22
23
    parser.add_argument(
        '--out-dir', type=str, default='demo', help='dir to save results')
    args = parser.parse_args()

    # build the model from a config file and a checkpoint file
    model = init_detector(args.config, args.checkpoint, device=args.device)
    # test a single image
    result, data = inference_detector(model, args.pcd)
    # show the results
24
    show_result_meshlab(data, result, args.out_dir, args.score_thr)
wuyuefeng's avatar
Demo  
wuyuefeng committed
25
26
27
28


if __name__ == '__main__':
    main()