"Glitching" is the practice of players exploiting faults in a video game's programming to achieve tasks that give them an unfair advantage in the game.
"Glitching" can refer to errors in graphics, sound, or animation. It can result from damaged hardware, corrupted memory, or algorithmic errors.
Artfully destroys an image. A common approache
Others take a filtering/editing approach 1, 2
Resources
Challenge: purposeful chaos, don't want to rely on manually changing pixels
In [12]:
import os
import IPython
from IPython.display import Image
files = os.listdir("./examples")
for file in files:
if ".png" in file or ".jpg" in file:
IPython.display.display(Image("./examples/"+file))
In [ ]: