Skip to content

Commit 7f03e16

Browse files
committed
Updates README
1 parent 87c6ed1 commit 7f03e16

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ The following algorithms are supported in this library. Click on the link to see
4343
- [Looks](#looks)
4444
- [Lookup table (LUT)](#lookup-table-image)
4545
- [Glitch-Effect](#glitch-image)
46+
- [Strokes](#strokes-image)
4647
- [Dithering](#dithering)
4748
- [Halftone](#halftone-image)
4849
- [Toning](#toning-image)
@@ -233,6 +234,14 @@ PImage processedImage = LUT.apply(image, style);
233234
PImage processedImage = Glitch.apply(image, intensity, scanlineheight);
234235
```
235236

237+
#### Strokes image
238+
![alt lookup-table](https://github.com/Milchreis/processing-imageprocessing/blob/master/img/strokes.png?raw=true)
239+
```java
240+
// gridSize is positive and the area for compound pixels
241+
// lineLength is positive and the length in pixels for each line
242+
PImage processedImage = Strokes.apply(image, gridSize, lineLength);
243+
```
244+
236245
#### Dithering
237246
![alt dithering](https://github.com/Milchreis/processing-imageprocessing/blob/master/img/dithering_d1.png?raw=true)
238247
```java

0 commit comments

Comments
 (0)