Initial Commit

This commit is contained in:
Roman Hergenreder
2018-12-04 12:54:01 +01:00
commit dd508a8100
16 changed files with 134 additions and 0 deletions

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 642 KiB

BIN
Day 1/data.png Normal file
View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

14
Day 1/decode.py Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/python
from PIL import Image
# Load Image
im = Image.open('HV18_Ball_Day1_color.png')
offsetX = 307
offsetY = 362
imageSize = 364
# Crop Image
im.crop((offsetX, offsetY, offsetX+imageSize, offsetY+imageSize)).save("data.png")
# Go on https://jabcode.org/scan/ and upload image :]