pytorch 图像预处理之减去均值,除以方差的实例


Posted in Python onJanuary 02, 2020

如下所示:

pytorch 图像预处理之减去均值,除以方差的实例

#coding=gbk
'''
GPU上面的环境变化太复杂,这里我直接给出在笔记本CPU上面的运行时间结果

由于方式3需要将tensor转换到GPU上面,这一过程很消耗时间,大概需要十秒,故而果断抛弃这样的做法

img (168, 300, 3)
sub div in numpy,time 0.0110
sub div in torch.tensor,time 0.0070
sub div in torch.tensor with torchvision.transforms,time 0.0050
tensor1=tensor2
tensor2=tensor3


img (1079, 1349, 3)
sub div in numpy,time 0.1899
sub div in torch.tensor,time 0.1469
sub div in torch.tensor with torchvision.transforms,time 0.1109
tensor1=tensor2
tensor2=tensor3


耗时最久的是numpy,其次是转换成torch.tensor,最快的是直接使用torchvision.transforms
我现在在GPU上面跑的程序GPU利用率特别低(大多数时间维持在2%左右,只有很少数的时间超过80%)
然后设置打印点调试程序时发现,getitem()输出一张图像的时间在0.1秒的数量级,这对于GPU而言是非常慢的
因为GPU计算速度很快,CPU加载图像和预处理图像的速度赶不上GPU的计算速度,就会导致显卡大量时间处于空闲状态
经过对于图像I/O部分代码的定位,发现是使用numpy减去图像均值除以方差这一操作浪费了太多时间,而且输入图像的分辨率越大,
所消耗的时间就会更多
原则上,图像预处理每个阶段的时间需要维持在0.01秒的数量级

所以,

'''

import numpy as np
import time
import torch
import torchvision.transforms as transforms
import cv2
# img_path='/ssddata2/wyx/detection/ead_stage12/stage12_img/WL_00387.jpg'
img_path='F:\\2\\00004.jpg'
PIXEL_MEANS =(0.485, 0.456, 0.406)  #RGB format mean and variances
PIXEL_STDS = (0.229, 0.224, 0.225)

#输入文件路径,输出的应该是转换成torch.tensor的标准形式

#方式一  在numpy中进行减去均值除以方差,最后转换成torch.tensor
one_start=time.time()
img=cv2.imread(img_path)
img=img[:,:,::-1]
img=img.astype(np.float32, copy=False)
img/=255.0
img-=np.array(PIXEL_MEANS)
img/=np.array(PIXEL_STDS)
tensor1=torch.from_numpy(img.copy())
tensor1=tensor1.permute(2,0,1)
one_end=time.time()
print('sub div in numpy,time {:.4f}'.format(one_end-one_start))

del img

#方式二 转换成torch.tensor,再减去均值除以方差
two_start=time.time()
img=cv2.imread(img_path)
img=img[:,:,::-1]
print('img',img.shape,np.min(img),np.min(img))
tensor2=torch.from_numpy(img.copy()).float()
tensor2/=255.0
tensor2-=torch.tensor(PIXEL_MEANS)
tensor2/=torch.tensor(PIXEL_STDS)
tensor2=tensor2.permute(2,0,1)
two_end=time.time()
print('sub div in torch.tensor,time {:.4f}'.format(two_end-two_start))

del img

#方式三 转换成torch.tensor,再放到GPU上面,最后减去均值除以方差
# three_start=time.time()
# img=cv2.imread(img_path)
# img=img[:,:,::-1]
# tensor3=torch.from_numpy(img.copy()).cuda().float()
# tensor3-=torch.tensor(PIXEL_MEANS).cuda()
# tensor3/=torch.tensor(PIXEL_STDS).cuda()
# three_end=time.time()
# print('sub div in torch.tensor on cuda,time {:.4f}'.format(three_end-three_start))

# del img

#方式四 转换成torch.tensor,使用transform方法减去均值除以方差
four_start=time.time()
img=cv2.imread(img_path)
img=img[:,:,::-1]
transform=transforms.Compose(
  [transforms.ToTensor(),transforms.Normalize(PIXEL_MEANS, PIXEL_STDS)]
)
tensor4=transform(img.copy())
four_end=time.time()
print('sub div in torch.tensor with torchvision.transforms,time {:.4f}'.format(four_end-four_start))

del img

if torch.sum(tensor1-tensor2)<=1e-3:
  print('tensor1=tensor2')
if torch.sum(tensor2-tensor4)==0:
  print('tensor2=tensor3')
# if tensor3==tensor4:
#   print('tensor3=tensor4')

以上这篇pytorch 图像预处理之减去均值,除以方差的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python实现微信公众平台自定义菜单实例
Mar 20 Python
python开启多个子进程并行运行的方法
Apr 18 Python
Windows安装Python、pip、easy_install的方法
Mar 05 Python
Python递归函数定义与用法示例
Jun 02 Python
Python+matplotlib绘制不同大小和颜色散点图实例
Jan 19 Python
PythonWeb项目Django部署在Ubuntu18.04腾讯云主机上
Apr 01 Python
Python3 实现串口两进程同时读写
Jun 12 Python
对于Python深浅拷贝的理解
Jul 29 Python
python开头的coding设置方法
Aug 08 Python
使用python代码进行身份证号校验的实现示例
Nov 21 Python
高考考python编程是真的吗
Jul 20 Python
python套接字socket通信
Apr 01 Python
Linux下升级安装python3.8并配置pip及yum的教程
Jan 02 #Python
pytorch实现focal loss的两种方式小结
Jan 02 #Python
pytorch中交叉熵损失(nn.CrossEntropyLoss())的计算过程详解
Jan 02 #Python
基于torch.where和布尔索引的速度比较
Jan 02 #Python
Python魔法方法 容器部方法详解
Jan 02 #Python
python 图像的离散傅立叶变换实例
Jan 02 #Python
Python加密模块的hashlib,hmac模块使用解析
Jan 02 #Python
You might like
php实现window平台的checkdnsrr函数
2015/05/27 PHP
Yii 框架使用Forms操作详解
2020/05/18 PHP
jquery 1.3.2 IE8中的一点点的小问题解决方法
2009/07/10 Javascript
jquery 最简单的属性菜单
2009/10/08 Javascript
Google排名中的10个最著名的 JavaScript库
2010/04/27 Javascript
添加JavaScript重载函数的辅助方法2
2010/07/04 Javascript
省市区三级联动下拉框菜单javascript版
2015/08/11 Javascript
详解Jquery 遍历数组之$().each方法与$.each()方法介绍
2017/01/09 Javascript
Vue学习之路之登录注册实例代码
2017/07/06 Javascript
Vue+Flask实现简单的登录验证跳转的示例代码
2018/01/13 Javascript
vue.js中使用echarts实现数据动态刷新功能
2019/04/16 Javascript
微信小程序实现form表单本地储存数据
2019/06/27 Javascript
微信小程序 wx:for遍历循环使用实例解析
2019/09/09 Javascript
vue表单数据交互提交演示教程
2019/11/13 Javascript
在react中使用vue的状态管理的方法示例
2020/05/02 Javascript
Vuex中的Mutations的具体使用方法
2020/06/01 Javascript
python中循环语句while用法实例
2015/05/16 Python
python实现文件路径和url相互转换的方法
2015/07/06 Python
pandas 数据实现行间计算的方法
2018/06/08 Python
numpy向空的二维数组中添加元素的方法
2018/11/01 Python
对python的unittest架构公共参数token提取方法详解
2018/12/17 Python
python批量修改ssh密码的实现
2019/08/08 Python
受外贸欢迎的美国主机:BlueHost
2017/05/16 全球购物
Can a struct inherit from another struct? (结构体能继承结构体吗)
2016/09/25 面试题
优秀求职信范文分享
2014/01/26 职场文书
教学质量评估实施方案
2014/03/17 职场文书
追悼会主持词
2014/03/20 职场文书
口才训练演讲稿范文
2014/09/16 职场文书
个人年终总结开头
2015/03/06 职场文书
自主招生自荐信格式范文
2015/03/25 职场文书
保护动物的宣传语
2015/07/13 职场文书
房地产置业顾问工作总结
2015/10/23 职场文书
python实现黄金分割法的示例代码
2021/04/28 Python
mysql分组后合并显示一个字段的多条数据方式
2022/01/22 MySQL
阿里云服务器部署RabbitMQ集群的详细教程
2022/06/01 Servers
HTML页面点击按钮关闭页面的多种方式
2022/12/24 HTML / CSS