Pixelize
Function
Filters the images into square blocks, giving a mosaic look by averaging
all of the pixels within the block.
Parameters
|
Type
|
Defaults
|
Function
|
x,yPixels |
int
|
4,xPixels
|
The block size in pixels to be filtered. |
Synopsis
image Pixelize(
image,
int xPixels,
int yPixels
);
Script
image = Pixelize( image, xPixels, yPixels);
Command Line
shake -pixelize xPixels yPixels
|