1. 程式人生 > >吳裕雄 python 機器學習——神經網絡TensorFlow圖片預處理調整圖片

吳裕雄 python 機器學習——神經網絡TensorFlow圖片預處理調整圖片

sta ring val nes 機器 con order process 學習

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

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) return tf.clip_by_value(image, 0.0, 1.0) def preprocess_for_train(image, height, width, bbox): # 查看是否存在標註框。 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) bbox_begin, bbox_size, _ = tf.image.sample_distorted_bounding_box( tf.shape(image), bounding_boxes=bbox) 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 def pre_main(img,bbox=None): if bbox is None: bbox = tf.constant([0.0, 0.0, 1.0, 1.0], dtype=tf.float32, shape=[1, 1, 4]) with tf.gfile.FastGFile(img, "rb") as f: image_raw_data = f.read() with tf.Session() as sess: img_data = tf.image.decode_jpeg(image_raw_data) for i in range(9): result = preprocess_for_train(img_data, 299, 299, bbox) plt.imshow(result.eval()) plt.axis(off) plt.savefig("E:\\myresource\\代號{}".format(i)) pre_main("E:\\myresource\\moutance.jpg",bbox=None) exit()

技術分享圖片

技術分享圖片

吳裕雄 python 機器學習——神經網絡TensorFlow圖片預處理調整圖片