TensorFlow实战框架Chp7--图像预处理完整样例

  • TensorFlow实战框架Chp7–图像预处理完整样例
# -*- coding: utf-8 -*-
"""
Created on Fri Jul  6 16:38:10 2018

@author: muli
"""

import tensorflow as tf
import numpy as np
import matplotlib.pyplot as plt


#1. 随机调整图片的色彩,定义两种顺序。
def distort_color(image, color_ordering=0):
    if color_ordering == 0:
        image = tf.image.random_brightness(image, max_delta=32./255.)
        image = tf.image.random_saturation(image, lower=0.5, upper=1.5)
        image = tf.image.random_hue(image, max_delta=0.2)
        image = tf.image.random_contrast(image, lower=0.5, upper=1.5)
    else:
        image = tf.image.random_saturation(image, lower=0.5, upper=1.5)
        image = tf.image.random_brightness(image, max_delta=32./255.)
        image = tf.image.random_contrast(image, lower=0.5, upper=1.5)
        image = tf.image.random_hue(image, max_delta=0.2)
    # 防止 矩阵的值,超出[0, 1)
    return tf.clip_by_value(image, 0.0, 1.0)

#2. 对图片进行预处理,将图片转化成神经网络的输入层数据。
def preprocess_for_train(image, height, width, bbox):
    # 查看是否存在标注框。
    if bbox is None:
        bbox = tf.constant([0.0, 0.0, 1.0, 1.0], dtype=tf.float32, shape=[1, 1, 4])

    # 转换图像张量的类型    
    if image.dtype != tf.float32:
        image = tf.image.convert_image_dtype(image, dtype=tf.float32)

    # 随机的截取图片中一个块。
    bbox_begin, bbox_size, _ = tf.image.sample_distorted_bounding_box(
        tf.shape(image), bounding_boxes=bbox, min_object_covered=0.4)
    bbox_begin, bbox_size, _ = tf.image.sample_distorted_bounding_box(
        tf.shape(image), bounding_boxes=bbox, min_object_covered=0.4)
    distorted_image = tf.slice(image, bbox_begin, bbox_size)

    # 将随机截取的图片调整为神经网络输入层的大小。
    distorted_image = tf.image.resize_images(distorted_image, [height, width], 
                                             method=np.random.randint(4))
    # 左右翻转图像
    distorted_image = tf.image.random_flip_left_right(distorted_image)
    # 使用一种随机的顺序调整图像的色彩
    distorted_image = distort_color(distorted_image, np.random.randint(2))
    return distorted_image

#3. 读取图片
image_raw_data = tf.gfile.FastGFile("./cat.jpg", "rb").read()

# 调用函数,进行函数的处理
with tf.Session() as sess:
    # 图像解码
    img_data = tf.image.decode_jpeg(image_raw_data)
    # 标准图像的方框大小
    boxes = tf.constant([[[0.05, 0.05, 0.9, 0.7], [0.35, 0.47, 0.5, 0.56]]])
    # 运行6次,得到6种不同的图像
    for i in range(6):
        print("第"+str(i+1)+"次运行:")
        result = preprocess_for_train(img_data, 299, 299, boxes)
        plt.imshow(result.eval())
        plt.show()




猜你喜欢

转载自blog.csdn.net/mr_muli/article/details/80943577