使用TensorFlow对图像进行随机旋转的实现示例


Posted in Python onJanuary 20, 2020

在使用深度学习对图像进行训练时,对图像进行随机旋转有助于提升模型泛化能力。然而之前在做旋转等预处理工作时,都是先对图像进行旋转后保存到本地,然后再输入模型进行训练,这样的过程会增加工作量,如果图片数量较多,生成旋转的图像会占用更多的空间。直接在训练过程中便对图像进行随机旋转,可有效提升工作效率节省硬盘空间。

使用TensorFlow对图像进行随机旋转如下:

TensorFlow版本为1.13.1

#-*- coding:utf-8 -*-
'''
  使用TensorFlow进行图像的随机旋转示例
'''
 
import tensorflow as tf
import numpy as np
import cv2
import matplotlib.pyplot as plt
 
 
img = cv2.imread('tf.jpg')
img = cv2.resize(img,(220,220))
img = cv2.cvtColor(img,cv2.COLOR_BGR2RGB)
 
def tf_rotate(input_image, min_angle = -np.pi/2, max_angle = np.pi/2):
  '''
  TensorFlow对图像进行随机旋转
  :param input_image: 图像输入
  :param min_angle: 最小旋转角度
  :param max_angle: 最大旋转角度
  :return: 旋转后的图像
  '''
  distorted_image = tf.expand_dims(input_image, 0)
  random_angles = tf.random.uniform(shape=(tf.shape(distorted_image)[0],), minval = min_angle , maxval = max_angle)
  distorted_image = tf.contrib.image.transform(
    distorted_image,
    tf.contrib.image.angles_to_projective_transforms(
      random_angles, tf.cast(tf.shape(distorted_image)[1], tf.float32), tf.cast(tf.shape(distorted_image)[2], tf.float32)
    ))
  rotate_image = tf.squeeze(distorted_image, [0])
  return rotate_image
 
global_init = tf.global_variables_initializer()
with tf.Session() as sess:
  init = tf.initialize_local_variables()
  sess.run([init, global_init])
  coord = tf.train.Coordinator()
  threads = tf.train.start_queue_runners(coord=coord)
  image = tf.placeholder(shape=(220, 220, 3), dtype=tf.float32)
 
  rotate_image = tf_rotate(image, -np.pi/2, np.pi/2)
  output = sess.run(rotate_image, feed_dict={image:img})
  # print('output:',output)
  plt.imshow(output.astype('uint8'))
  plt.title('rotate image')
  plt.show()

结果如下:

原图:

使用TensorFlow对图像进行随机旋转的实现示例

随机旋转后的图:

使用TensorFlow对图像进行随机旋转的实现示例

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
解决python2.7 查询mysql时出现中文乱码
Oct 09 Python
用Python将动态GIF图片倒放播放的方法
Nov 02 Python
python执行使用shell命令方法分享
Nov 08 Python
python互斥锁、加锁、同步机制、异步通信知识总结
Feb 11 Python
对Python3中的print函数以及与python2的对比分析
May 02 Python
python 每天如何定时启动爬虫任务(实现方法分享)
May 21 Python
TensorFlow打印tensor值的实现方法
Jul 27 Python
python解析json串与正则匹配对比方法
Dec 20 Python
python读取csv和txt数据转换成向量的实例
Feb 12 Python
python中对_init_的理解及实例解析
Oct 11 Python
在win64上使用bypy进行百度网盘文件上传功能
Jan 02 Python
python读取raw binary图片并提取统计信息的实例
Jan 09 Python
TensorFLow 不同大小图片的TFrecords存取实例
Jan 20 #Python
python各层级目录下import方法代码实例
Jan 20 #Python
Python 识别12306图片验证码物品的实现示例
Jan 20 #Python
如何基于python实现归一化处理
Jan 20 #Python
tensorflow入门:tfrecord 和tf.data.TFRecordDataset的使用
Jan 20 #Python
tensorflow入门:TFRecordDataset变长数据的batch读取详解
Jan 20 #Python
python如何通过pyqt5实现进度条
Jan 20 #Python
You might like
下载文件的点击数回填
2006/10/09 PHP
PHP初学入门
2006/11/19 PHP
CodeIgniter php mvc框架 中国网站
2008/05/26 PHP
php中数字、字符与对象判断函数用法实例
2014/11/26 PHP
thinkPHP和onethink微信支付插件分享
2019/08/11 PHP
formValidator3.3的ajaxValidator一些异常分析
2011/07/12 Javascript
textarea 控制输入字符字节数(示例代码)
2013/12/27 Javascript
javascript浏览器窗口之间传递数据的方法
2015/01/20 Javascript
JavaScript实现给按钮加上双重动作的方法
2015/08/14 Javascript
详解JavaScript中localStorage使用要点
2016/01/13 Javascript
深入解析Javascript闭包的功能及实现方法
2016/07/10 Javascript
javaScript语法总结
2016/11/25 Javascript
基于JS递归函数细化认识及实用实例(推荐)
2017/08/07 Javascript
gulp教程_从入门到项目中快速上手使用方法
2017/09/14 Javascript
vue页面跳转后返回原页面初始位置方法
2018/02/11 Javascript
Vue动态加载异步组件的方法
2018/11/21 Javascript
JQuery Ajax执行跨域请求数据的解决方案
2018/12/10 jQuery
[02:07]2018DOTA2亚洲邀请赛主赛事第三日五佳镜头 fy极限反杀
2018/04/06 DOTA
python模拟登录百度代码分享(获取百度贴吧等级)
2013/12/27 Python
python smtplib模块发送SSL/TLS安全邮件实例
2015/04/08 Python
编写Python小程序来统计测试脚本的关键字
2016/03/12 Python
Python基础学习之类与实例基本用法与注意事项详解
2019/06/17 Python
Python发送邮件的实例代码讲解
2019/10/16 Python
python GUI库图形界面开发之PyQt5浏览器控件QWebEngineView详细使用方法
2020/02/26 Python
python实现Pyecharts实现动态地图(Map、Geo)
2020/03/25 Python
Pytorch十九种损失函数的使用详解
2020/04/29 Python
Python基于argparse与ConfigParser库进行入参解析与ini parser
2021/02/02 Python
受外贸欢迎的美国主机:BlueHost
2017/05/16 全球购物
以下的初始化有什么区别
2013/12/16 面试题
批评与自我批评材料
2014/02/15 职场文书
班委竞选演讲稿
2014/04/28 职场文书
人力资源管理专业毕业生自荐书
2014/05/25 职场文书
我的中国梦口号
2014/06/16 职场文书
企业安全生产目标责任书
2014/07/23 职场文书
化工生产实习心得体会
2016/01/22 职场文书
Android Studio实现简易进制转换计算器
2022/05/20 Java/Android