数据增强的方法及实现,看写alexnet(2012)那篇文章中用到了两种方法请问具体怎么实现呢?
1、generating image translations and horizontal reflections.
2、altering the intensities of the RGB channels in training images.
第一种从256*256的图像中提取五个224*224的子块,再做镜像,一张生成10张
第二种用PCA改变RGB三个通道的值
想做自己的数据集所以向大神请教具体实现方法
2、altering the intensities of the RGB channels in training images.
第一种从256*256的图像中提取五个224*224的子块,再做镜像,一张生成10张
第二种用PCA改变RGB三个通道的值
想做自己的数据集所以向大神请教具体实现方法
1 个回复
土拨鼠翻翻土
赞同来自: weixing 、Daisy1996
我一般使用cv来实现,以上方法随机选个七八种变化就差不多了。