fm_vis.py 3.2 KB
Newer Older
W
wqz960 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
# Copyright (c) 2020 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 resnet import ResNet50 
import paddle.fluid as fluid

import numpy as np 
import cv2 
import utils
import argparse

def parse_args():
    def str2bool(v):
        return v.lower() in ("true", "t", "1")
    parser = argparse.ArgumentParser()
    parser.add_argument("-i", "--image_file", type=str)
    parser.add_argument("-c", "--channel_num", type=int)
    parser.add_argument("-p", "--pretrained_model", type=str)
    parser.add_argument("--show", type=str2bool, default=False)
W
wqz960 已提交
31
    parser.add_argument("--interpolation", type=int, default=1)
W
wqz960 已提交
32 33 34 35 36
    parser.add_argument("--save_path", type=str)
    parser.add_argument("--use_gpu", type=str2bool, default=True)
    
    return parser.parse_args()

W
wqz960 已提交
37
def create_operators(interpolation=1):
W
wqz960 已提交
38 39 40 41 42 43
    size = 224
    img_mean = [0.485, 0.456, 0.406]
    img_std = [0.229, 0.224, 0.225]
    img_scale = 1.0 / 255.0

    decode_op = utils.DecodeImage()
W
wqz960 已提交
44
    resize_op = utils.ResizeImage(resize_short=256, interpolation=interpolation)
W
wqz960 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
    crop_op = utils.CropImage(size=(size, size))
    normalize_op = utils.NormalizeImage(
        scale=img_scale, mean=img_mean, std=img_std)
    totensor_op = utils.ToTensor()

    return [decode_op, resize_op, crop_op, normalize_op, totensor_op]


def preprocess(fname, ops):
    data = open(fname, 'rb').read()
    for op in ops:
        data = op(data)

    return data

def main():
    args = parse_args()
W
wqz960 已提交
62
    operators = create_operators(args.interpolation)
W
wqz960 已提交
63 64 65 66 67 68
    # assign the place
    if args.use_gpu:
        gpu_id = fluid.dygraph.parallel.Env().dev_id
        place = fluid.CUDAPlace(gpu_id)
    else:
        place = fluid.CPUPlace()
W
wqz960 已提交
69

W
wqz960 已提交
70
    #pre_weights_dict = fluid.load_program_state(args.pretrained_model)
W
wqz960 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83
    with fluid.dygraph.guard(place):
        net = ResNet50()
        data = preprocess(args.image_file, operators)
        data = np.expand_dims(data, axis=0)
        data = fluid.dygraph.to_variable(data)
        dy_weights_dict = net.state_dict()
        pre_weights_dict_new = {}
        for key in dy_weights_dict:
            weights_name = dy_weights_dict[key].name
            pre_weights_dict_new[key] = pre_weights_dict[weights_name]
        net.set_dict(pre_weights_dict_new)
        net.eval()
        _, fm = net(data)
W
wqz960 已提交
84
        assert args.channel_num >= 0 and args.channel_num <= fm.shape[1], "the channel is out of the range, should be in {} but got {}".format([0, fm.shape[1]], args.channel_num)
W
wqz960 已提交
85 86 87 88 89 90 91 92 93 94
        fm = (np.squeeze(fm[0][args.channel_num].numpy())*255).astype(np.uint8)
    if fm is not None:
        if args.save:
            cv2.imwrite(args.save_path, fm)
        if args.show:
            cv2.show(fm)
            cv2.waitKey(0)
        
if __name__ == "__main__":
    main()