infer.py 3.0 KB
Newer Older
D
dengkaipeng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# 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.

D
dengkaipeng 已提交
15 16 17 18 19 20 21 22
import os
import time
import numpy as np
import paddle
import paddle.fluid as fluid
import box_utils
import reader
from utility import print_arguments, parse_args
D
dengkaipeng 已提交
23
from models.yolov3 import YOLOv3
D
dengkaipeng 已提交
24 25
from pycocotools.coco import COCO
from pycocotools.cocoeval import COCOeval, Params
T
tink2123 已提交
26
from config import cfg
D
dengkaipeng 已提交
27 28 29 30 31 32 33


def infer():

    if not os.path.exists('output'):
        os.mkdir('output')

D
dengkaipeng 已提交
34
    model = YOLOv3(is_train=False)
D
dengkaipeng 已提交
35 36
    model.build_model()
    outputs = model.get_pred()
D
dengkaipeng 已提交
37
    input_size = cfg.input_size
D
dengkaipeng 已提交
38 39 40
    place = fluid.CUDAPlace(0) if cfg.use_gpu else fluid.CPUPlace()
    exe = fluid.Executor(place)
    # yapf: disable
D
dengkaipeng 已提交
41
    if cfg.weights:
D
dengkaipeng 已提交
42
        def if_exist(var):
D
dengkaipeng 已提交
43 44
            return os.path.exists(os.path.join(cfg.weights, var.name))
        fluid.io.load_vars(exe, cfg.weights, predicate=if_exist)
D
dengkaipeng 已提交
45
    # yapf: enable
46 47 48 49 50 51 52

    # you can save inference model by following code
    # fluid.io.save_inference_model("./output/yolov3", 
    #                               feeded_var_names=['image', 'im_shape'],
    #                               target_vars=outputs,
    #                               executor=exe)

D
dengkaipeng 已提交
53
    feeder = fluid.DataFeeder(place=place, feed_list=model.feeds())
D
dengkaipeng 已提交
54
    fetch_list = [outputs]
D
dengkaipeng 已提交
55 56 57 58 59 60 61 62
    image_names = []
    if cfg.image_name is not None:
        image_names.append(cfg.image_name)
    else:
        for image_name in os.listdir(cfg.image_path):
            if image_name.split('.')[-1] in ['jpg', 'png']:
                image_names.append(image_name)
    for image_name in image_names:
u010070587's avatar
u010070587 已提交
63 64
        infer_reader = reader.infer(input_size,
                                    os.path.join(cfg.image_path, image_name))
D
dengkaipeng 已提交
65 66 67
        label_names, _ = reader.get_label_infos()
        data = next(infer_reader())
        im_shape = data[0][2]
u010070587's avatar
u010070587 已提交
68 69 70
        outputs = exe.run(fetch_list=[v.name for v in fetch_list],
                          feed=feeder.feed(data),
                          return_numpy=False)
D
dengkaipeng 已提交
71 72 73
        bboxes = np.array(outputs[0])
        if bboxes.shape[1] != 6:
            print("No object found in {}".format(image_name))
74
            continue
D
dengkaipeng 已提交
75 76 77
        labels = bboxes[:, 0].astype('int32')
        scores = bboxes[:, 1].astype('float32')
        boxes = bboxes[:, 2:].astype('float32')
D
dengkaipeng 已提交
78 79

        path = os.path.join(cfg.image_path, image_name)
u010070587's avatar
u010070587 已提交
80 81
        box_utils.draw_boxes_on_image(path, boxes, scores, labels, label_names,
                                      cfg.draw_thresh)
D
dengkaipeng 已提交
82 83 84 85 86 87


if __name__ == '__main__':
    args = parse_args()
    print_arguments(args)
    infer()