infer.py 6.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import os
K
Kaipeng Deng 已提交
20
import glob
21 22

import numpy as np
Y
Yang Zhang 已提交
23
from PIL import Image
24 25 26 27

from paddle import fluid

from ppdet.core.workspace import load_config, merge_config, create
28
from ppdet.modeling.model_input import create_feed
29 30 31
from ppdet.data.data_feed import create_reader

from ppdet.utils.eval_utils import parse_fetches
Y
Yang Zhang 已提交
32
from ppdet.utils.cli import ArgsParser
33 34 35 36 37 38 39 40 41
from ppdet.utils.visualizer import visualize_results
import ppdet.utils.checkpoint as checkpoint

import logging
FORMAT = '%(asctime)s-%(levelname)s: %(message)s'
logging.basicConfig(level=logging.INFO, format=FORMAT)
logger = logging.getLogger(__name__)


Y
Yang Zhang 已提交
42 43 44 45 46 47 48 49 50 51 52
def get_save_image_name(output_dir, image_path):
    """
    Get save image name from source image path.
    """
    if not os.path.exists(output_dir):
        os.makedirs(output_dir)
    image_name = image_path.split('/')[-1]
    name, ext = os.path.splitext(image_name)
    return os.path.join(output_dir, "{}".format(name)) + ext


K
Kaipeng Deng 已提交
53 54 55 56 57
def get_test_images(infer_dir, infer_img):
    """
    Get image path list in TEST mode
    """
    assert infer_img is not None or infer_dir is not None, \
58
        "--infer_img or --infer_dir should be set"
K
Kaipeng Deng 已提交
59 60 61 62
    assert infer_img is None or os.path.isfile(infer_img), \
            "{} is not a file".format(infer_img)
    assert infer_dir is None or os.path.isdir(infer_dir), \
            "{} is not a directory".format(infer_dir)
K
Kaipeng Deng 已提交
63 64 65 66 67 68 69 70 71
    images = []

    # infer_img has a higher priority
    if infer_img and os.path.isfile(infer_img):
        images.append(infer_img)
        return images

    infer_dir = os.path.abspath(infer_dir)
    assert os.path.isdir(infer_dir), \
Y
Yang Zhang 已提交
72 73 74 75 76
        "infer_dir {} is not a directory".format(infer_dir)
    exts = ['jpg', 'jpeg', 'png', 'bmp']
    exts += [ext.upper() for ext in exts]
    for ext in exts:
        images.extend(glob.glob('{}/*.{}'.format(infer_dir, ext)))
K
Kaipeng Deng 已提交
77

Y
Yang Zhang 已提交
78
    assert len(images) > 0, "no image found in {}".format(infer_dir)
K
Kaipeng Deng 已提交
79 80 81 82 83
    logger.info("Found {} inference images in total.".format(len(images)))

    return images


84
def main():
Y
Yang Zhang 已提交
85
    cfg = load_config(FLAGS.config)
86 87

    if 'architecture' in cfg:
Y
Yang Zhang 已提交
88
        main_arch = cfg.architecture
89 90 91
    else:
        raise ValueError("'architecture' not specified in config file.")

Y
Yang Zhang 已提交
92
    merge_config(FLAGS.opt)
93 94

    if 'test_feed' not in cfg:
95
        test_feed = create(main_arch + 'TestFeed')
96
    else:
Y
Yang Zhang 已提交
97
        test_feed = create(cfg.test_feed)
98

Y
Yang Zhang 已提交
99
    test_images = get_test_images(FLAGS.infer_dir, FLAGS.infer_img)
K
Kaipeng Deng 已提交
100 101
    test_feed.dataset.add_images(test_images)

Y
Yang Zhang 已提交
102
    place = fluid.CUDAPlace(0) if cfg.use_gpu else fluid.CPUPlace()
103 104 105 106 107 108 109 110
    exe = fluid.Executor(place)

    model = create(main_arch)

    startup_prog = fluid.Program()
    infer_prog = fluid.Program()
    with fluid.program_guard(infer_prog, startup_prog):
        with fluid.unique_name.guard():
111
            _, feed_vars = create_feed(test_feed, use_pyreader=False)
112 113 114 115 116 117 118
            test_fetches = model.test(feed_vars)
    infer_prog = infer_prog.clone(True)

    reader = create_reader(test_feed)
    feeder = fluid.DataFeeder(place=place, feed_list=feed_vars.values())

    exe.run(startup_prog)
Y
Yang Zhang 已提交
119 120
    if cfg.weights:
        checkpoint.load_checkpoint(exe, infer_prog, cfg.weights)
121 122 123 124 125

    # parse infer fetches
    extra_keys = []
    if cfg['metric'] == 'COCO':
        extra_keys = ['im_info', 'im_id', 'im_shape']
K
Kaipeng Deng 已提交
126 127
    if cfg['metric'] == 'VOC':
        extra_keys = ['im_id']
128 129
    keys, values, _ = parse_fetches(test_fetches, infer_prog, extra_keys)

130
    # parse dataset category
Y
Yang Zhang 已提交
131
    if cfg.metric == 'COCO':
132
        from ppdet.utils.coco_eval import bbox2out, mask2out, get_category_info
Y
Yang Zhang 已提交
133
    if cfg.metric == "VOC":
K
Kaipeng Deng 已提交
134
        from ppdet.utils.voc_eval import bbox2out, get_category_info
135 136 137

    anno_file = getattr(test_feed.dataset, 'annotation', None)
    with_background = getattr(test_feed, 'with_background', True)
K
Kaipeng Deng 已提交
138 139 140
    use_default_label = getattr(test_feed, 'use_default_label', False)
    clsid2catid, catid2name = get_category_info(anno_file, with_background,
                                                use_default_label)
141 142 143 144 145 146 147 148 149 150 151 152 153

    imid2path = reader.imid2path
    for iter_id, data in enumerate(reader()):
        outs = exe.run(infer_prog,
                       feed=feeder.feed(data),
                       fetch_list=values,
                       return_numpy=False)
        res = {
            k: (np.array(v), v.recursive_sequence_lengths())
            for k, v in zip(keys, outs)
        }
        logger.info('Infer iter {}'.format(iter_id))

K
Kaipeng Deng 已提交
154 155 156 157
        bbox_results = None
        mask_results = None
        is_bbox_normalized = True if cfg.metric == 'VOC' else False
        if 'bbox' in res:
158
            bbox_results = bbox2out([res], clsid2catid, is_bbox_normalized)
K
Kaipeng Deng 已提交
159 160
        if 'mask' in res:
            mask_results = mask2out([res], clsid2catid,
161
                                    model.mask_head.resolution)
K
Kaipeng Deng 已提交
162 163 164 165 166 167

        # visualize result
        im_ids = res['im_id'][0]
        for im_id in im_ids:
            image_path = imid2path[int(im_id)]
            image = Image.open(image_path).convert('RGB')
168 169 170
            image = visualize_results(image,
                                      int(im_id), catid2name, 0.5, bbox_results,
                                      mask_results, is_bbox_normalized)
Y
Yang Zhang 已提交
171 172 173 174
            save_name = get_save_image_name(FLAGS.output_dir, image_path)
            logger.info("Detection bbox results save in {}".format(save_name))
            image.save(save_name)

175 176

if __name__ == '__main__':
Y
Yang Zhang 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
    parser = ArgsParser()
    parser.add_argument(
        "--infer_dir",
        type=str,
        default=None,
        help="Directory for images to perform inference on.")
    parser.add_argument(
        "--infer_img",
        type=str,
        default=None,
        help="Image path, has higher priority over --infer_dir")
    parser.add_argument(
        "--output_dir",
        type=str,
        default="output",
        help="Directory for storing the output visualization files.")
    FLAGS = parser.parse_args()
194
    main()