python opencv对图像进行旋转且不裁剪图片的实现方法


Posted in Python onJuly 09, 2019

最近在做深度学习时需要用到图像处理相关的操作,在度娘上找到的图片旋转方法千篇一律,旋转完成的图片都不是原始大小,很苦恼,于是google到歪果仁的网站扒拉了一个方法,亲测好用,再次嫌弃天下文章一大抄的现象,虽然我也是抄歪果仁的。

废话不多说了,直接贴代码了。

def rotate_bound(image, angle):
  # grab the dimensions of the image and then determine the
  # center
  (h, w) = image.shape[:2]
  (cX, cY) = (w // 2, h // 2)
 
  # grab the rotation matrix (applying the negative of the
  # angle to rotate clockwise), then grab the sine and cosine
  # (i.e., the rotation components of the matrix)
  M = cv2.getRotationMatrix2D((cX, cY), -angle, 1.0)
  cos = np.abs(M[0, 0])
  sin = np.abs(M[0, 1])
 
  # compute the new bounding dimensions of the image
  nW = int((h * sin) + (w * cos))
  nH = int((h * cos) + (w * sin))
 
  # adjust the rotation matrix to take into account translation
  M[0, 2] += (nW / 2) - cX
  M[1, 2] += (nH / 2) - cY
 
  # perform the actual rotation and return the image
  return cv2.warpAffine(image, M, (nW, nH))

其他的不用多说了吧,第一个参数穿opencv读取的图像,第二个参数传入需要旋转的角度,enjoy!

以上这篇python opencv对图像进行旋转且不裁剪图片的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python深入学习之上下文管理器
Aug 31 Python
python实现上传下载文件功能
Nov 19 Python
教你学会使用Python正则表达式
Sep 07 Python
Python File readlines() 使用方法
Mar 19 Python
Python一句代码实现找出所有水仙花数的方法
Nov 13 Python
Python 脚本获取ES 存储容量的实例
Dec 27 Python
Python二进制文件读取并转换为浮点数详解
Jun 25 Python
Tensorflow 实现分批量读取数据
Jan 04 Python
新建文件时Pycharm中自动设置头部模板信息的方法
Apr 17 Python
python随机模块random的22种函数(小结)
May 15 Python
python OpenCV学习笔记
Mar 31 Python
python元组打包和解包过程详解
Aug 02 Python
python下的opencv画矩形和文字注释的实现方法
Jul 09 #Python
Python3 执行系统命令并获取实时回显功能
Jul 09 #Python
利用python开发app实战的方法
Jul 09 #Python
python设置环境变量的作用和实例
Jul 09 #Python
python版百度语音识别功能
Jul 09 #Python
利用Python实现Shp格式向GeoJSON的转换方法
Jul 09 #Python
python实现集中式的病毒扫描功能详解
Jul 09 #Python
You might like
PHP 定界符 使用技巧
2009/06/14 PHP
php实现统计目录文件大小的函数
2015/12/25 PHP
PHP上传图片、删除图片简单实例
2016/11/12 PHP
PHP实现腾讯与百度坐标转换
2017/08/05 PHP
php传值和传引用的区别点总结
2019/11/19 PHP
JS控制表格隔行变色
2006/06/26 Javascript
关于使用runtimeStyle属性问题讨论文章
2007/03/08 Javascript
利用ASP发送和接收XML数据的处理方法与代码
2007/11/13 Javascript
YUI 读码日记之 YAHOO.util.Dom - Part.1
2008/03/22 Javascript
cnblogs csdn 代码运行框实现代码
2009/11/02 Javascript
jQuery入门第一课 jQuery选择符
2010/03/14 Javascript
浅析jQuery的链式调用之each函数
2010/12/03 Javascript
在JQuery dialog里的服务器控件 事件失效问题
2010/12/08 Javascript
JavaScript数值转换的三种方式总结
2014/07/31 Javascript
webpack中CommonsChunkPlugin详细教程(小结)
2017/11/09 Javascript
解决webpack无法通过IP地址访问localhost的问题
2018/02/22 Javascript
在vue项目中引入highcharts图表的方法(详解)
2018/03/05 Javascript
js中int和string数据类型互相转化实例
2019/01/16 Javascript
vue组件中watch props根据v-if动态判断并挂载DOM的问题
2019/05/12 Javascript
微信小程序 确认框的实现(附代码)
2019/07/23 Javascript
layui使用及简单的三级联动实现教程
2020/12/01 Javascript
[39:02]DOTA2亚洲邀请赛 3.31 小组赛 B组 Mineski vs VGJ.T
2018/04/01 DOTA
Python Sql数据库增删改查操作简单封装
2016/04/18 Python
python数字类型math库原理解析
2020/03/02 Python
python爬虫实现POST request payload形式的请求
2020/04/30 Python
详解如何修改python中字典的键和值
2020/09/29 Python
如何在windows下安装配置python工具Ulipad
2020/10/27 Python
18-35岁旅游团的全球领导者:Contiki
2017/02/08 全球购物
蔻驰法国官网:COACH法国
2018/11/14 全球购物
波兰品牌鞋履在线商店:Eastend.pl
2020/01/11 全球购物
大学本科生职业生涯规划书范文
2014/09/14 职场文书
2014入党积极分子破除“四风”思想汇报
2014/09/14 职场文书
先进单位事迹材料
2014/12/25 职场文书
材料员岗位职责
2015/02/10 职场文书
学校捐款活动总结
2015/05/09 职场文书
Memcached介绍及php-memcache扩展安装
2021/04/01 PHP