[PYTHON] Réduction d'image (panneau matriciel LED 16 x 32)

Réduisez le fichier ppm pour créer une image à afficher sur le panneau de la matrice RVB 16x32.

1. Bibliothèque

pip install Pillow

resize.py


encoding:UTF-8
#-*- codinf:utf-8 -*-
from PIL import Image

img = Image.open("{Avant la conversion du fichier jpg}")
width, height = img.size

img = img.resize((int(img.width / (img.height / 16 )), 16))
img.save("{Fichier ppm converti}")

2. Exécutez

python resize.py

Recommended Posts

Réduction d'image (panneau matriciel LED 16 x 32)
Contrôlez le panneau LED Matrix depuis ROS
Réduction d'image (panneau matriciel LED 16 x 32)
Contrôlez le panneau LED Matrix depuis ROS
Contrôlez le panneau LED Matrix depuis ROS