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去掉字符串中空格的方法
Mar 11 Python
python中input()与raw_input()的区别分析
Feb 27 Python
python代码 if not x: 和 if x is not None: 和 if not x is None:使用介绍
Sep 21 Python
Python学习之Anaconda的使用与配置方法
Jan 04 Python
基于Python中单例模式的几种实现方式及优化详解
Jan 09 Python
浅谈python中对于json写入txt文件的编码问题
Jun 07 Python
python 读取文本文件的行数据,文件.splitlines()的方法
Jul 12 Python
Python英文文本分词(无空格)模块wordninja的使用实例
Feb 20 Python
PySide和PyQt加载ui文件的两种方法
Feb 27 Python
对python中的装包与解包实例详解
Aug 24 Python
Django Xadmin多对多字段过滤实例
Apr 07 Python
PyCharm Ctrl+Shift+F 失灵的简单有效解决操作
Jan 15 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
咖啡豆的最常见发酵处理方法,详细了解一下
2021/03/03 冲泡冲煮
easyui的tabs update正确用法分享
2014/03/21 PHP
ThinkPHP使用UTFWry地址库进行IP定位实例
2014/04/01 PHP
PHP实现的memcache环形队列类实例
2015/07/28 PHP
详解PHP中foreach的用法和实例
2016/10/25 PHP
php使用curl实现ftp文件下载功能
2017/05/16 PHP
Yii框架扩展CGridView增加导出CSV功能的方法
2017/05/24 PHP
PHP+ajax实现获取新闻数据简单示例
2018/05/08 PHP
JavaScript中的连字符详解
2013/11/28 Javascript
好好了解一下Cookie(强烈推荐)
2016/06/14 Javascript
实例详解JavaScript中setTimeout函数的执行顺序
2017/07/12 Javascript
微信小程序实现即时通信聊天功能的实例代码
2018/08/17 Javascript
Vuex 在Vue 组件中获得Vuex 状态state的方法
2018/08/27 Javascript
angular多语言配置详解
2019/05/16 Javascript
Python读取ini文件、操作mysql、发送邮件实例
2015/01/01 Python
对Python中Iterator和Iterable的区别详解
2018/10/18 Python
python+PyQT实现系统桌面时钟
2020/06/16 Python
Face++ API实现手势识别系统设计
2018/11/21 Python
对python中大文件的导入与导出方法详解
2018/12/28 Python
python 去除二维数组/二维列表中的重复行方法
2019/01/23 Python
python中栈的原理及实现方法示例
2019/11/27 Python
python返回数组的索引实例
2019/11/28 Python
基于python调用psutil模块过程解析
2019/12/20 Python
CSS3系列教程:背景图片(背景大小和多背景图) 应用说明
2012/12/19 HTML / CSS
用纯CSS3实现网页中常见的小箭头
2017/10/16 HTML / CSS
打印机墨盒:123Inkjets
2017/02/16 全球购物
Bally巴利英国官网:经典瑞士鞋履、手袋及配饰奢侈品牌
2018/05/07 全球购物
入党思想汇报
2014/01/05 职场文书
父母寄语大全
2014/04/12 职场文书
上党课的心得体会
2014/09/02 职场文书
中华在我心中演讲稿
2014/09/13 职场文书
公司离职证明范本(5篇)
2014/09/17 职场文书
2015年仓库管理员工作总结
2015/04/21 职场文书
Python 中的 copy()和deepcopy()
2021/11/07 Python
【DOTA2】半决赛强强对话~ PSG LGD vs EHOME - DPC 2022 CN REGIONAL FINALS WINTER
2022/04/02 DOTA
java中如何截取字符串最后一位
2022/07/07 Java/Android