image_demo.py 1.86 KB
Newer Older
1
2
# Copyright (c) OpenMMLab. All rights reserved.
import asyncio
zhe chen's avatar
zhe chen committed
3
import os.path as osp
4
5
6
7
8
from argparse import ArgumentParser

import mmcv
import mmcv_custom  # noqa: F401,F403
import mmdet_custom  # noqa: F401,F403
zhe chen's avatar
zhe chen committed
9
10
from mmdet.apis import (async_inference_detector, inference_detector,
                        init_detector, show_result_pyplot)
11
12
13
14
15
16
17


def parse_args():
    parser = ArgumentParser()
    parser.add_argument('img', help='Image file')
    parser.add_argument('config', help='Config file')
    parser.add_argument('checkpoint', help='Checkpoint file')
zhe chen's avatar
zhe chen committed
18
    parser.add_argument('--out', type=str, default='demo', help='out dir')
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
    parser.add_argument(
        '--device', default='cuda:0', help='Device used for inference')
    parser.add_argument(
        '--palette',
        default='coco',
        choices=['coco', 'voc', 'citys', 'random'],
        help='Color palette used for visualization')
    parser.add_argument(
        '--score-thr', type=float, default=0.3, help='bbox score threshold')
    parser.add_argument(
        '--async-test',
        action='store_true',
        help='whether to set async options for async inference.')
    args = parser.parse_args()
    return args


def main(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 = inference_detector(model, args.img)
zhe chen's avatar
zhe chen committed
41

42
43
44
45
46
47
48
49
50
51
52
53
54
    mmcv.mkdir_or_exist(args.out)
    out_file = osp.join(args.out, osp.basename(args.img))
    # show the results
    model.show_result(
        args.img,
        result,
        score_thr=args.score_thr,
        show=False,
        bbox_color=args.palette,
        text_color=(200, 200, 200),
        mask_color=args.palette,
        out_file=out_file
    )
zhe chen's avatar
zhe chen committed
55
    print(f'Result is save at {out_file}')
56
57
58
59


if __name__ == '__main__':
    args = parse_args()
zhe chen's avatar
zhe chen committed
60
    main(args)