python 자동 재단 이미지 코드 공유

이 코드 는 그림 의 가장자리 공백 구역 을 자동 으로 자 르 는 데 도움 을 줄 수 있 습 니 다.만약 에 그림 에 큰 공백 구역 이 있다 면(같은 색 이 일정한 면적 을 형성 하면 공백 구역 이 라 고 생각 합 니 다)아래 의 python 코드 는 자동 으로 자 를 수 있 습 니 다.투명 한 그림 이 라면 큰 투명 한 부분 을 자동 으로 자 를 수 있 습 니 다.
이 코드 는 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 재 미 있 는 프로젝트-포르노 이미지 인식 코드 공유
Python 생 성 디지털 이미지 코드 공유

좋은 웹페이지 즐겨찾기