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 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
#读取图片。
image_raw_data = tf.gfile.FastGFile("F:\\TensorFlowGoogle\\201806-github\\datasets\\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]]])
for i in range(9):
result = preprocess_for_train(img_data, 299, 299, boxes)
plt.imshow(result.eval())
plt.show()

最新文章

  1. phpstorm 配置 xdebug调试工具
  2. SharePoint文档库,如何在新窗口打开中的文件
  3. git删除文件需要注意的事项
  4. 星外虚拟主机跨web目录文件读取漏洞
  5. JavaWeb之 JSP基础
  6. react服务端/客户端,同构代码心得
  7. 解决jquery animate({scrollTop$pos},500)与$(window).scroll方法冲突的问题
  8. zabbix web场景模拟监控配置
  9. 统计建模与R软件习题二答案
  10. php curl模拟post请求提交数据样例总结
  11. Intellij idea 15配置tomcat,maven
  12. Flask入门之SQLAlchemy数据库连接操作(第15讲)
  13. Git branch && Git checkout常见用法
  14. 1.3:Render Pipeline and GPU Pipeline
  15. 确定有穷自动机(DFA)的化简(最小化)
  16. OpenGL——旋转的六边形(动画)
  17. lucene 一次查询多个id
  18. httpclient的简单使用
  19. MySQL keepalived 双主.md
  20. 上传下载 demo

热门文章

  1. Maven:java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
  2. hdu3359 Kind of a Blur
  3. Vulkan SDK 之 Device
  4. Pytorch_torch.nn.MSELoss
  5. LICEcap--一款录屏生成Gif的软件
  6. 二十、CI框架数据库操作之查看生产的sql语句
  7. 海外Essay写作如何减少重复用词
  8. 四、python杂项
  9. 十一、GUI设计-记事本程序
  10. JavaScript学习总结(一)