Skip to content

Instantly share code, notes, and snippets.

View tinytintoy's full-sized avatar

TAKASAKI Yusuke tinytintoy

View GitHub Profile
@tinytintoy
tinytintoy / gifAnime2binImage.py
Last active September 19, 2017 04:06 — forked from jitomesky/gifAnime2binImage.py
GIFアニメ画像を2値化してArduino用のヘッダファイルを出力するプログラム / 64x64 の白黒二値画像を ATtiny85 で使用するフォーク
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import numpy as np
import sys
sys.path.append('/usr/local/lib/python2.7/site-packages')
import cv2
from PIL import Image, ImageSequence, ImageDraw
import time
import unittest