blur-level | Simple BlurX | Simple BlurY | Simple FullBlur | Modified Matt's Blur | Larry's Blur |
blur1 | |||||
blur2 | |||||
blur3 | |||||
blur4 | |||||
blur5 | |||||
TheCode | Blurx2.py | Blury2.py | Blur2.py | MattBlur2 | AvgBlur2 |
FastBlur | Blur | returnBlur |
FastBlur.py | NewBlur.py | returnBlur.py |
This Blur is the fastest I can devise. It is the same as Blur except that the two for loops are split up. | This is a standard Bluring function. It makes a "block" and moves it around. Averaged based bluriness. | This final one is the standard Blur except that it upon completion the user can readily play with his or her blurry picture at the command line and gets a file version of it to ... for FREE !!!!! |
Step1 | Step2 | Step3 |
We have the originial picture and run Resize.py on it to get ... | Here we have the larger picture with pixelation visible so next we run FastBlur.py on it to get ... | This is the end product as is visible the pixelation seems gone or at least less |
commands that got us here step1- resize(3) | step2- file = makePicture(pickAFile()) —Blur(file,2) | show(file) — writePictureTo(file,"some path") |
same commands except step1 it was resize(2) not (3) | same | same |