File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff 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);
233234PImage 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
You can’t perform that action at this time.
0 commit comments