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

4
from mmdet3d.apis import (inference_multi_modality_detector, init_model,
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
                          show_result_meshlab)


def main():
    parser = ArgumentParser()
    parser.add_argument('pcd', help='Point cloud file')
    parser.add_argument('image', help='image file')
    parser.add_argument('ann', help='ann 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(
        '--score-thr', type=float, default=0.0, help='bbox score threshold')
    parser.add_argument(
        '--out-dir', type=str, default='demo', help='dir to save results')
21
22
23
24
25
26
    parser.add_argument(
        '--show', action='store_true', help='show online visuliaztion results')
    parser.add_argument(
        '--snapshot',
        action='store_true',
        help='whether to save online visuliaztion results')
27
28
29
    args = parser.parse_args()

    # build the model from a config file and a checkpoint file
30
    model = init_model(args.config, args.checkpoint, device=args.device)
31
32
33
34
    # test a single image
    result, data = inference_multi_modality_detector(model, args.pcd,
                                                     args.image, args.ann)
    # show the results
35
36
37
38
39
40
    show_result_meshlab(
        data,
        result,
        args.out_dir,
        args.score_thr,
        show=args.show,
41
42
        snapshot=args.snapshot,
        task='multi_modality-det')
43
44
45
46


if __name__ == '__main__':
    main()