1
0
mirror of https://github.com/Klagarge/PokeHES.git synced 2025-07-17 21:31:10 +00:00

file in jar

This commit is contained in:
2022-06-19 17:39:41 +02:00
parent adf854d15c
commit 0813fd5254
132 changed files with 19 additions and 78 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -1,31 +0,0 @@
Informatique :
Mudry Pierre-André <--
Mathématique :
Epiney Jacques
Evéquoz Gilles
Nicollier Grégoire <--
Savioz Christian
Physique :
Ellert Christoph <--
Electricité :
Bianchi Christophe <--
Davide Pavanello
Mécanique :
Samuel Rey-Mermet
Paciotti Gabriel <--
Haifa Sallem
Wittmann Christian
Bezençon Cyrille
Rapillard Laurent
Langue :
Gloeckner Caroline <--
Laffargue-Rieder Laurence

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -1,26 +0,0 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from PIL import Image
import numpy as np
import os
W, H = 32, 32
if __name__ == "__main__":
path = input("Path: ")
img = Image.open(path).convert()
a = np.array(img)
b = np.zeros((a.shape[1], a.shape[0], *a.shape[2:]), dtype=a.dtype)
w, h = a.shape[1]//W, a.shape[0]//H
for y in range(h):
for x in range(w):
b[x*W:x*W+W,y*H:y*H+H] = a[y*H:y*H+H,x*W:x*W+W]
img.close()
img = Image.fromarray(b)
dirname, basename = os.path.dirname(path), os.path.basename(path)
basename, ext = os.path.splitext(basename)
img.save(os.path.join(dirname, basename+"_flipped"+ext))