pcd_demo.py 1.39 KB
Newer Older
dingchang's avatar
dingchang committed
1
# Copyright (c) OpenMMLab. All rights reserved.
wuyuefeng's avatar
Demo  
wuyuefeng committed
2
3
from argparse import ArgumentParser

4
from mmdet3d.apis import inference_detector, init_model, show_result_meshlab
wuyuefeng's avatar
Demo  
wuyuefeng committed
5
6
7
8
9
10
11
12
13
14


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(
15
        '--score-thr', type=float, default=0.0, help='bbox score threshold')
wuyuefeng's avatar
Demo  
wuyuefeng committed
16
17
    parser.add_argument(
        '--out-dir', type=str, default='demo', help='dir to save results')
18
    parser.add_argument(
Zongbao Feng's avatar
Zongbao Feng committed
19
20
21
        '--show',
        action='store_true',
        help='show online visualization results')
22
23
24
    parser.add_argument(
        '--snapshot',
        action='store_true',
Zongbao Feng's avatar
Zongbao Feng committed
25
        help='whether to save online visualization results')
wuyuefeng's avatar
Demo  
wuyuefeng committed
26
27
28
    args = parser.parse_args()

    # build the model from a config file and a checkpoint file
29
    model = init_model(args.config, args.checkpoint, device=args.device)
wuyuefeng's avatar
Demo  
wuyuefeng committed
30
31
32
    # test a single image
    result, data = inference_detector(model, args.pcd)
    # show the results
33
34
35
36
37
38
    show_result_meshlab(
        data,
        result,
        args.out_dir,
        args.score_thr,
        show=args.show,
39
40
        snapshot=args.snapshot,
        task='det')
wuyuefeng's avatar
Demo  
wuyuefeng committed
41
42
43
44


if __name__ == '__main__':
    main()