Class | PImage | ||||||
---|---|---|---|---|---|---|---|
Name | filter() |
||||||
Examples | // @pjs preload must be used to preload the image /* @pjs preload="archcrop.jpg"; */ PImage a; a = loadImage("archcrop.jpg"); image(a, 0, 0); a.filter(GRAY); image(a, 50, 0); // @pjs preload must be used to preload the image /* @pjs preload="archcrop.jpg"; */ PImage a, b; a = loadImage("archcrop.jpg"); b = loadImage("archcrop.jpg"); a.filter(THRESHOLD, .6); image(a, 0, 0); b.filter(THRESHOLD, .4); image(b, 50, 0); |
||||||
Description | Filters an image as defined by one of the following modes: THRESHOLD - converts the image to black and white pixels depending if they are above or below the threshold defined by the level parameter. The level must be between 0.0 (black) and 1.0(white). If no level is specified, 0.5 is used. GRAY - converts any colors in the image to grayscale equivalents INVERT - sets each pixel to its inverse value POSTERIZE - limits each channel of the image to the number of colors specified as the level parameter BLUR - executes a Guassian blur with the level parameter specifying the extent of the blurring. If no level parameter is used, the blur is equivalent to Guassian blur of radius 1. OPAQUE - sets the alpha channel to entirely opaque. ERODE - reduces the light areas with the amount defined by the level parameter. DILATE - increases the light areas with the amount defined by the level parameter |
||||||
Syntax | img.filter(MODE) img.filter(MODE,srcImg) |
||||||
Parameters |
|
||||||
Returns | None | ||||||
Usage | Web & Application |