Deep Learning -- 数据增强
数据增强
- 旋转|反射变换(Rotation/reflection):随机旋转图像一定角度;改变图像的内容朝向;
- 翻转变换(flip):沿这水平或者垂直方向翻转图像
- 缩放变换(zoom):按照一定的比例放大或者缩小图像
- 平移变换(shift):在图像平面上对图像以一定方式进行平移
数据增强的代码实现
# -*- coding:utf-8 -*-
# 数据增强
# 1.翻转变换flip
# 2.随机修剪random crop
# 3.色彩抖动color jittering
# 4.平移变换shift
# 5.尺度变换scale
# 6.对比度变换contrast
# 7.噪声扰动noise
# 8.旋转变换/反射变换 Rotation/reflection from PIL import Image,ImageEnhance,ImageOps,ImageFile
import numpy as np
import random
import threading,os,time
import logging logger = logging.getLogger(__name__)
ImageFile.LOAD_TRUNCATED_IMAGES = True class DataAugmentation:
#包含数据增强的八种方式
def __init__(self):
pass @staticmethod
def openImage(image):
return Image.open(image,mode="r") @staticmethod
def randomRotation(image,mode=Image.BICUBIC):
# 对图像进行任意0~360度旋转
# param mode 邻近插值,双线性插值,双三次B样条插值(default)
# param image PIL的图像image
# return 旋转之后的图像
random_angle = np.random.randint(1,360)
return image.rotate(random_angle,mode) @staticmethod
def randomCrop(image):
#对图像随意剪切,考虑到图像大小范围(68*68),使用一个一个大于(36*36)的窗口进行截图
#param image:PIL的图像image
#return:剪切之后的图像
image_width = image.size[0]
image_height = image.size[1]
crop_win_size = np.random.randint(40,68)
random_region = ((image_width - crop_win_size ) >> 1 , (image_height - crop_win_size) >> 1 ,(image_width + crop_win_size) >> 1 , (image_height + crop_win_size) >> 1)
return image.crop(random_region) @staticmethod
def randomColor(image):
#对图像进行颜色抖动
#param image:PIL的图像image
#return:有颜色色差的图像image #随机因子
random_factor = np.random.randint(0, 31) / 10.
#调整图像的饱和度
color_image = ImageEnhance.Color(image).enhance(random_factor)
#随机因子
random_factor = np.random.randint(10,21) / 10.
#调整图像的亮度
brightness_image = ImageEnhance.Brightness(color_image).enhance(random_factor)
#随机因子
random_factor = np.random.randint(10,21) / 10.
#调整图像的对比度
contrast_image = ImageEnhance.Contrast(brightness_image).enhance(random_factor)
#随机因子
random_factor = np.random.randint(0,31) / 10.
#调整图像锐度
sharpness_image = ImageEnhance.Sharpness(contrast_image).enhance(random_factor)
return sharpness_image @staticmethod
def randomGaussian(image,mean=0.2,sigma=0.3):
#对图像进行高斯噪声处理
#param image:
#return def gaussianNoisy(im,mean=0.2,sigma=0.3):
#对图像做高斯噪音处理
# param im:单通道图像
# param mean:偏移量
# param sigma:标准差
#return:
for _i in range(len(im)):
im[_i] += random.gauss(mean,sigma)
return im #将图像转化为数组
img = np.asanyarray(image)
#将数组改为读写模式
img.flags.writeable = True
width,height = img.shape[:2]
#对image的R,G,B三个通道进行分别处理
img_r = gaussianNoisy(img[:,:,0].flatten(), mean, sigma)
img_g = gaussianNoisy(img[:,:,1].flatten(), mean, sigma)
img_b = gaussianNoisy(img[:,:,2].flatten(), mean, sigma)
img[:,:,0] = img_r.reshape([width,height])
img[:,:,1] = img_g.reshape([width,height])
img[:,:,2] = img_b.reshape([width,height])
return Image.fromarray(np.uint8(img)) @staticmethod
def saveImage(image,path):
image.save(path) def makeDir(path):
try:
if not os.path.exists(path):
if not os.path.isfile(path):
os.makdirs(path)
return 0
else:
return 1
except Exception, e:
print str(e)
return -1 def imageOps(func_name, image, des_path, file_name, times = 5):
funcMap = {"randomRotation": DataAugmentation.randomRotation,
"randomCrop":DataAugmentation.randomCrop,
"randomColor":DataAugmentation.randomColor,
"randomGaussian":DataAugmentation.randomGaussian
}
if funcMap.get(func_name) is None:
logger.error("%s is not exist" , func_name)
return -1 for _i in range(0,times,1):
new_image = funcMap[func_name](image)
DataAugmentation.saveImage(new_image,os.path.join(des_path,func_name + str(_i) + file_name)) opsList = {"randomRotation", "randomCrop", "randomColor", "randomGaussian"} def threadOPS(path,new_path):
#多线程处理事务
#param src_path:资源文件
#param des_path:目的地文件
#return: if os.path.isdir(path):
img_names = os.listdir(path)
else:
img_names = [path]
for img_name in img_names:
print img_name
tmp_img_name = os.path.join(path,img_name)
print tmp_img_name
if os.path.isdir(tmp_img_name):
if makeDir(os.path.join(new_path,img_name)) != -1:
threadOPS(tmp_img_name,os.path.join(new_path,img_name))
else:
print 'create new dir failure'
return -1
elif tmp_img_name.split('.')[1] != "DS_Store":
image = DataAugmentation.openImage(tmp_img_name)
threadImage = [0] * 5
_index = 0
for ops_name in opsList:
threadImage[_index] = threading.Thread(target=imageOps,args=(ops_name,image,new_path,img_name))
threadImage[_index].start()
_index += 1
time.sleep(0.2) if __name__ == '__main__':
threadOPS("C:\Users\Acheron\PycharmProjects\CNN\pic-image\\train\images","C:\Users\Acheron\PycharmProjects\CNN\pic-image\\train\\newimages")
数据增强实验
原始的待进行数据增强的图像:
1.对图像进行颜色抖动
2.对图像进行高斯噪声处理
Deep Learning -- 数据增强的更多相关文章
- [基础]Deep Learning的基础概念
目录 DNN CNN DNN VS CNN Example 卷积的好处why convolution? DCNN 卷积核移动的步长 stride 激活函数 active function 通道 cha ...
- Generalizing from a Few Examples: A Survey on Few-Shot Learning 小样本学习最新综述 | 三大数据增强方法
目录 原文链接:小样本学习与智能前沿 01 Transforming Samples from Dtrain 02 Transforming Samples from a Weakly Labeled ...
- Deep Learning 16:用自编码器对数据进行降维_读论文“Reducing the Dimensionality of Data with Neural Networks”的笔记
前言 论文“Reducing the Dimensionality of Data with Neural Networks”是深度学习鼻祖hinton于2006年发表于<SCIENCE > ...
- Deep Learning 11_深度学习UFLDL教程:数据预处理(斯坦福大学深度学习教程)
理论知识:UFLDL数据预处理和http://www.cnblogs.com/tornadomeet/archive/2013/04/20/3033149.html 数据预处理是深度学习中非常重要的一 ...
- Deep learning:三十四(用NN实现数据的降维)
数据降维的重要性就不必说了,而用NN(神经网络)来对数据进行大量的降维是从2006开始的,这起源于2006年science上的一篇文章:reducing the dimensionality of d ...
- 收藏:左路Deep Learning+右路Knowledge Graph,谷歌引爆大数据
发表于2013-01-18 11:35| 8827次阅读| 来源sina微博 条评论| 作者邓侃 数据分析智能算法机器学习大数据Google 摘要:文章来自邓侃的博客.数据革命迫在眉睫. 各大公司重兵 ...
- #Deep Learning回顾#之LeNet、AlexNet、GoogLeNet、VGG、ResNet
CNN的发展史 上一篇回顾讲的是2006年Hinton他们的Science Paper,当时提到,2006年虽然Deep Learning的概念被提出来了,但是学术界的大家还是表示不服.当时有流传的段 ...
- Deep Learning(深度学习)学习笔记整理
申明:本文非笔者原创,原文转载自:http://www.sigvc.org/bbs/thread-2187-1-3.html 4.2.初级(浅层)特征表示 既然像素级的特征表示方法没有作用,那怎样的表 ...
- 【转载】Deep Learning(深度学习)学习笔记整理
http://blog.csdn.net/zouxy09/article/details/8775360 一.概述 Artificial Intelligence,也就是人工智能,就像长生不老和星际漫 ...
随机推荐
- lua 小技巧
lua 小技巧 把常用的工具函数添加到 _G 里面,所有的文件都可以直接调用: ``` lua -- 在 a 文件中将工具函数添加到 _G: _G.IsEmptyStr = function(str) ...
- Vue 混合
混合(mixins)是一种分发vue组件中可复用功能的非常灵活的方式.混合对象可以可以包含任意组件选项.以组件使用混合对象时,所有混合对象的选项将被混合到该组件本身的选项. //定义一个混合对象 va ...
- Google Analytics Advanced Configuration - Google Analytics 高级配置
该文档提供了Android SDK v3的部分元素的高级配置说明. Overview - 概述 Android Google Analytics SDK提供了Tracker类,应用可以用它给Googl ...
- POJ 2472 106 miles to Chicago
最短路问题变形. 题意是给你一些道路,和路过时不被抓的概率. 要求找一条到达目的地时不被抓的最大概率概率. 初始 dis[]设为 1 .其余为 0 .找最大就可以. #include<cstdi ...
- eclipse不自动弹出提示的解决办法(eclipse alt+/快捷键失效)centos 6.7
1.次方法用于没有一点提示的情况:依次打开eclipse上面的windows ——preferences ——java ——editor —— content assist ,在右上方有一行“sele ...
- Android ----------------- 面试题 整理 一
1. XML的解析方式都有哪些? 每一种解析方式的运行流程? 设XML为:<a>a<b>bc<c>c1</c></b></a> ...
- I/O的控制方式——查询,中断,dma(转)
早期,I/O串行,查询方式.发展,I/O并行,两种方式其一是中断方式,其二是dma方式,使得外部设备能直接与主存储器信息交换,减轻了cpu的工作量.技术继续发展,出现通道结构,实质上为高性能的dma控 ...
- 【BZOJ】3433: [Usaco2014 Jan]Recording the Moolympics (贪心)
http://www.lydsy.com/JudgeOnline/problem.php?id=3433 想了好久啊....... 想不出dp啊......sad 后来看到一英文题解......... ...
- Java WEB 之页面间传递特殊字符
本文是学习网络上的文章时的总结以及自己的一点实践.感谢大家无私的分享. 昨天在做项目的时候,有一个页面间传递特殊字符的需求,查了一些资料.如今将自己的经验写出来. 首先.在前台编码 var fckPu ...
- php form 图片上传至服务器上
本文章也是写给自己看的,因为写的很简洁,连判断都没有,只是直接实现了能上传的功能. 前台: <form action="upload.php" method="PO ...