File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,13 @@ PImage processedImage = SobelEdgeDetector.apply(image, false);
7979
8080## Optimisation
8181
82+ #### Brightness
83+ ![ alt autobalance] ( https://github.com/Milchreis/processing-imageprocessing/blob/master/img/brightness.png?raw=true )
84+ ``` java
85+ PImage processedImage = Brightness . apply(image, value);
86+ // value isa positive number for brighting up or a negative for darken down
87+ ```
88+
8289#### AutoBalance image
8390![ alt autobalance] ( https://github.com/Milchreis/processing-imageprocessing/blob/master/img/autobalance.png?raw=true )
8491``` java
@@ -117,6 +124,12 @@ LUT style = LUT.loadLut(LUT.STYLE.CONTRAST);
117124PImage processedImage = LUT . apply(image, style);
118125```
119126
127+ #### Glitch image
128+ ![ alt lookup-table] ( https://github.com/Milchreis/processing-imageprocessing/blob/master/img/glitch.png?raw=true )
129+ ``` java
130+ PImage processedImage = Glitch . apply(image, intensity, scanlineheight);
131+ ```
132+
120133#### Dithering
121134![ alt dithering] ( https://github.com/Milchreis/processing-imageprocessing/blob/master/img/dithering_d1.png?raw=true )
122135``` java
You can’t perform that action at this time.
0 commit comments