python自动裁剪图像代码分享


Posted in Python onNovember 25, 2017

本代码可以帮你自动剪切掉图片的边缘空白区域,如果你的图片有大片空白区域(只要是同一颜色形成一定的面积就认为是空白区域),下面的python代码可以帮你自动切除,如果是透明图像,会自动剪切大片的透明部分。

本代码需要PIL模块

pil相关介绍

PIL:Python Imaging Library,已经是Python平台事实上的图像处理标准库了。PIL功能非常强大,但API却非常简单易用。

由于PIL仅支持到Python 2.7,加上年久失修,于是一群志愿者在PIL的基础上创建了兼容的版本,名字叫Pillow,支持最新Python 3.x,又加入了许多新特性,因此,我们可以直接安装使用Pillow。

import Image, ImageChops
 
def autoCrop(image,backgroundColor=None):
  '''Intelligent automatic image cropping.
    This functions removes the usless "white" space around an image.
    
    If the image has an alpha (tranparency) channel, it will be used
    to choose what to crop.
    
    Otherwise, this function will try to find the most popular color
    on the edges of the image and consider this color "whitespace".
    (You can override this color with the backgroundColor parameter) 
 
    Input:
      image (a PIL Image object): The image to crop.
      backgroundColor (3 integers tuple): eg. (0,0,255)
         The color to consider "background to crop".
         If the image is transparent, this parameters will be ignored.
         If the image is not transparent and this parameter is not
         provided, it will be automatically calculated.
 
    Output:
      a PIL Image object : The cropped image.
  '''
   
  def mostPopularEdgeColor(image):
    ''' Compute who's the most popular color on the edges of an image.
      (left,right,top,bottom)
       
      Input:
        image: a PIL Image object
       
      Ouput:
        The most popular color (A tuple of integers (R,G,B))
    '''
    im = image
    if im.mode != 'RGB':
      im = image.convert("RGB")
     
    # Get pixels from the edges of the image:
    width,height = im.size
    left  = im.crop((0,1,1,height-1))
    right = im.crop((width-1,1,width,height-1))
    top  = im.crop((0,0,width,1))
    bottom = im.crop((0,height-1,width,height))
    pixels = left.tostring() + right.tostring() + top.tostring() + bottom.tostring()
 
    # Compute who's the most popular RGB triplet
    counts = {}
    for i in range(0,len(pixels),3):
      RGB = pixels[i]+pixels[i+1]+pixels[i+2]
      if RGB in counts:
        counts[RGB] += 1
      else:
        counts[RGB] = 1  
     
    # Get the colour which is the most popular:    
    mostPopularColor = sorted([(count,rgba) for (rgba,count) in counts.items()],reverse=True)[0][1]
    return ord(mostPopularColor[0]),ord(mostPopularColor[1]),ord(mostPopularColor[2])
   
  bbox = None
   
  # If the image has an alpha (tranparency) layer, we use it to crop the image.
  # Otherwise, we look at the pixels around the image (top, left, bottom and right)
  # and use the most used color as the color to crop.
   
  # --- For transparent images -----------------------------------------------
  if 'A' in image.getbands(): # If the image has a transparency layer, use it.
    # This works for all modes which have transparency layer
    bbox = image.split()[list(image.getbands()).index('A')].getbbox()
  # --- For non-transparent images -------------------------------------------
  elif image.mode=='RGB':
    if not backgroundColor:
      backgroundColor = mostPopularEdgeColor(image)
    # Crop a non-transparent image.
    # .getbbox() always crops the black color.
    # So we need to substract the "background" color from our image.
    bg = Image.new("RGB", image.size, backgroundColor)
    diff = ImageChops.difference(image, bg) # Substract background color from image
    bbox = diff.getbbox() # Try to find the real bounding box of the image.
  else:
    raise NotImplementedError, "Sorry, this function is not implemented yet for images in mode '%s'." % image.mode
     
  if bbox:
    image = image.crop(bbox)
     
  return image
 
 
 
#范例:裁剪透明图片:
im = Image.open('myTransparentImage.png')
cropped = autoCrop(im)
cropped.show()
 
#范例:裁剪非透明图片
im = Image.open('myImage.png')
cropped = autoCrop(im)
cropped.show()

 总结

以上就是本文关于python自动裁剪图像代码分享的全部内容,希望对大家有所帮助。如有不足之处,欢迎留言指出。感兴趣的朋友可以继续参阅本站:

Python 相关文章推荐
python sqlobject(mysql)中文乱码解决方法
Nov 14 Python
Python开发的HTTP库requests详解
Aug 29 Python
python爬虫系列Selenium定向爬取虎扑篮球图片详解
Nov 15 Python
Python第三方库h5py_读取mat文件并显示值的方法
Feb 08 Python
python 猴子补丁(monkey patch)
Jun 26 Python
pandas删除行删除列增加行增加列的实现
Jul 06 Python
python 寻找离散序列极值点的方法
Jul 10 Python
numpy 声明空数组详解
Dec 05 Python
pandas之分组groupby()的使用整理与总结
Jun 18 Python
Python手动或自动协程操作方法解析
Jun 22 Python
Python中猜拳游戏与猜筛子游戏的实现方法
Sep 04 Python
pytorch 如何使用amp进行混合精度训练
May 24 Python
分享一个简单的python读写文件脚本
Nov 25 #Python
python之virtualenv的简单使用方法(必看篇)
Nov 25 #Python
python多进程实现进程间通信实例
Nov 24 #Python
Python实现列表删除重复元素的三种常用方法分析
Nov 24 #Python
Python二叉树的定义及常用遍历算法分析
Nov 24 #Python
详解python上传文件和字符到PHP服务器
Nov 24 #Python
Python实现矩阵转置的方法分析
Nov 24 #Python
You might like
php去除头尾空格的2种方法
2015/03/16 PHP
功能强大的PHP图片处理类(水印、透明度、旋转)
2015/10/21 PHP
phpStudy vscode 搭建debug调试的教程详解
2020/07/28 PHP
JS 判断undefined的实现代码
2009/11/26 Javascript
jquery遍历数组与筛选数组的方法
2013/11/05 Javascript
JS连连看源码完美注释版(推荐)
2013/12/09 Javascript
jQuery实现菜单式图片滑动切换
2015/03/14 Javascript
AngularJs  Using $location详解及示例代码
2016/09/02 Javascript
Angularjs修改密码的实例代码
2017/05/26 Javascript
vue.js移动端app之上拉加载以及下拉刷新实战
2017/09/11 Javascript
three.js实现3D视野缩放效果
2017/11/16 Javascript
浅谈vue项目如何打包扔向服务器
2018/05/08 Javascript
聊聊鉴权那些事(推荐)
2019/08/22 Javascript
layer.open提交子页面的form和layedit文本编辑内容的方法
2019/09/27 Javascript
VUE实现密码验证与提示功能
2019/10/18 Javascript
在Python的Django框架中编写编译函数
2015/07/20 Python
简单实现python爬虫功能
2015/12/31 Python
Python2实现的LED大数字显示效果示例
2017/09/04 Python
python PyTorch预训练示例
2018/02/11 Python
python实现图片批量压缩程序
2018/07/23 Python
Python数据库小程序源代码
2019/09/15 Python
使用pyqt5 tablewidget 单元格设置正则表达式
2019/12/13 Python
Python多线程操作之互斥锁、递归锁、信号量、事件实例详解
2020/03/24 Python
总结Pyinstaller的坑及终极解决方法(小结)
2020/09/21 Python
Python基础进阶之海量表情包多线程爬虫功能的实现
2020/12/17 Python
详解如何解决canvas图片getImageData,toDataURL跨域问题
2018/09/17 HTML / CSS
美国领先的在线旅游网站:Orbitz
2018/11/05 全球购物
小学生个人先进事迹材料
2014/05/08 职场文书
学党史心得体会
2014/09/05 职场文书
机关党员三严三实心得体会
2014/10/13 职场文书
幼儿园亲子活动感想
2015/08/07 职场文书
2016年教师节特级教师获奖感言
2015/12/09 职场文书
慰问信的写作格式及范文!
2019/06/24 职场文书
100句人生哲理语录集锦:强者征服今天,懒汉坐等明天
2019/10/18 职场文书
mysql的单列多值存储实例详解
2022/04/05 MySQL
TypeScript 使用 Tuple Union 声明函数重载
2022/04/07 Javascript