
大数据
A-level
这个作者很懒,什么都没留下…
展开
-
机器学习扩充图像数据集的利器
imgaug是一个python库,可帮助您为机器学习项目扩充图像。它将一组输入图像转换为一组稍有变化的新的,更大的图像。This python library helps you with augmenting images for your machine learning projects. It converts a set of input images into a new, ...原创 2019-10-07 21:50:11 · 780 阅读 · 0 评论 -
python图像大小调整 保持长宽比 增加背景色
from PIL import Imagedef resize(image_pil, width, height): ''' Resize PIL image keeping ratio and using white background. ''' ratio_w = width / image_pil.width ratio_h = heigh...原创 2019-10-09 17:36:37 · 2989 阅读 · 0 评论