Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chaoticbyte/glitch
Experimental (and slow) implementations of some destructive image effects in Python
https://github.com/chaoticbyte/glitch
glitch-effect image-effects image-man image-processing pillow pixel-sorting python3
Last synced: about 2 months ago
JSON representation
Experimental (and slow) implementations of some destructive image effects in Python
- Host: GitHub
- URL: https://github.com/chaoticbyte/glitch
- Owner: ChaoticByte
- License: mit
- Created: 2024-01-04T20:47:31.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-05T17:59:21.000Z (12 months ago)
- Last Synced: 2024-01-06T00:18:15.592Z (12 months ago)
- Topics: glitch-effect, image-effects, image-man, image-processing, pillow, pixel-sorting, python3
- Language: Python
- Homepage:
- Size: 2.37 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# glitch
Experimental implementations of some destructive image effects in Python
## Requirements
Those alGoRitHms are designed to work with Pillow.
Have a look at [requirements.txt](./requirements.txt)## 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)