pcd_seg_demo.py 2.65 KB
Newer Older
dingchang's avatar
dingchang committed
1
# Copyright (c) OpenMMLab. All rights reserved.
2
3
import logging
import os
4
5
from argparse import ArgumentParser

6
7
8
from mmengine.logging import print_log

from mmdet3d.apis import LidarSeg3DInferencer
9

ZCMax's avatar
ZCMax committed
10
11

def parse_args():
12
13
    parser = ArgumentParser()
    parser.add_argument('pcd', help='Point cloud file')
14
15
    parser.add_argument('model', help='Config file')
    parser.add_argument('weights', help='Checkpoint file')
16
17
18
    parser.add_argument(
        '--device', default='cuda:0', help='Device used for inference')
    parser.add_argument(
19
20
21
22
        '--out-dir',
        type=str,
        default='outputs',
        help='Output directory of prediction and visualization results.')
23
    parser.add_argument(
Zongbao Feng's avatar
Zongbao Feng committed
24
25
        '--show',
        action='store_true',
26
27
28
29
30
31
32
33
34
35
36
        help='Show online visualization results')
    parser.add_argument(
        '--wait-time',
        type=float,
        default=-1,
        help='The interval of show (s). Demo will be blocked in showing'
        'results, if wait_time is -1. Defaults to -1.')
    parser.add_argument(
        '--no-save-vis',
        action='store_true',
        help='Do not save detection visualization results')
37
    parser.add_argument(
38
        '--no-save-pred',
39
        action='store_true',
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
        help='Do not save detection prediction results')
    parser.add_argument(
        '--print-result',
        action='store_true',
        help='Whether to print the results.')
    call_args = vars(parser.parse_args())

    call_args['inputs'] = dict(points=call_args.pop('pcd'))

    if call_args['no_save_vis'] and call_args['no_save_pred']:
        call_args['out_dir'] = ''

    init_kws = ['model', 'weights', 'device']
    init_args = {}
    for init_kw in init_kws:
        init_args[init_kw] = call_args.pop(init_kw)

    # NOTE: If your operating environment does not have a display device,
    # (e.g. a remote server), you can save the predictions and visualize
    # them in local devices.
    if os.environ.get('DISPLAY') is None and call_args['show']:
        print_log(
            'Display device not found. `--show` is forced to False',
            logger='current',
            level=logging.WARNING)
        call_args['show'] = False

    return init_args, call_args


def main():
    # TODO: Support inference of point cloud numpy file.
    init_args, call_args = parse_args()

    inferencer = LidarSeg3DInferencer(**init_args)
    inferencer(**call_args)

    if call_args['out_dir'] != '' and not (call_args['no_save_vis']
                                           and call_args['no_save_pred']):
        print_log(
            f'results have been saved at {call_args["out_dir"]}',
            logger='current')
82
83
84


if __name__ == '__main__':
85
    main()