Skip to content

Instantly share code, notes, and snippets.

View runtheorun-exe's full-sized avatar
🏳️‍🌈
indefinitely suffering

Theocharis Panagiotis Charalampidis runtheorun-exe

🏳️‍🌈
indefinitely suffering
View GitHub Profile
@loufranco
loufranco / make3d.py
Created July 17, 2017 12:41
A Python script to make red/cyan 3D photos
from PIL import Image
import sys
# Check arguments
if len(sys.argv) < 3:
print "Usage: python make3d.py <leftimage> <rightimage> <3doutputname>"
quit()
# Open the left and right images
imLeft = Image.open(sys.argv[1])