This repository has been archived on 2025-09-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
glitch/README.md

35 lines
874 B
Markdown
Raw Permalink Normal View History

2024-01-04 21:47:32 +01:00
# glitch
2024-01-04 23:27:49 +01:00
2024-01-04 21:47:32 +01:00
Experimental implementations of some destructive image effects in Python
2024-01-04 23:27:49 +01:00
## Requirements
Those alGoRitHms are designed to work with Pillow.
Have a look at [requirements.txt](./requirements.txt)
2024-01-05 02:27:23 +01:00
## Examples
### pixel_sort
![](examples/pixel_sort/original.png) ![](examples/pixel_sort/result.png)
Code: [examples/pixel_sort/run.py](./examples/pixel_sort/run.py)
### pixel_smear
![](examples/pixel_smear/original.png) ![](examples/pixel_smear/result.png)
Code: [examples/pixel_smear/run.py](./examples/pixel_smear/run.py)
### channel_offset
![](examples/channel_offset/original.png) ![](examples/channel_offset/result.png)
Code: [examples/channel_offset/run.py](./examples/channel_offset/run.py)
### led_screen
![](examples/led_screen/original.png) ![](examples/led_screen/result.png)
Code: [examples/led_screen/run.py](./examples/led_screen/run.py)