Skip to content

Commit 72270eb

Browse files
authored
Update README.md
1 parent a4b791f commit 72270eb

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff 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);
117124
PImage 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

0 commit comments

Comments
 (0)