Skip to content

Instantly share code, notes, and snippets.

View tiff's full-sized avatar

Christopher Blum tiff

View GitHub Profile
@tiff
tiff / trim.py
Created March 28, 2018 07:14
Trim image whitespace
import numpy as np
from PIL import Image, ImageChops
import sys
import numpy as np
def trim(im):
bg = Image.new(im.mode, im.size, im.getpixel((0,0)))
size = im.size
top_left_pixel = im.getpixel((0,0))