mirror of
https://github.com/visgl/luma.gl.git
synced 2025-12-08 17:36:19 +00:00
351 lines
13 KiB
Plaintext
351 lines
13 KiB
Plaintext
# Image Processing
|
|
|
|
Screen space effects packaged as reusable shader modules in `@luma.gl/shadertools` based on the [glfx library](http://evanw.github.io/glfx.js/).
|
|
|
|
:::caution
|
|
> luma.gl shader modules can be used directly with [deck.gl](https://deck.gl)'s post processing system.
|
|
> the `Pass` classes that were removed from luma.gl v7. Until they are restored, these shader passes would require manual code to use.
|
|
:::
|
|
|
|
## Attribution
|
|
|
|
Most of these image post processing effects (and this documentation page) are forked from Evan Wallace's [glfx](https://github.com/evanw/glfx.js) library and have just been repackaged as luma.gl shader modules / shader passes.
|
|
|
|
## Usage
|
|
|
|
Import the shader module(s) you would like to use from `@luma.gl/shadertools`, e.g:
|
|
|
|
```typescript
|
|
import {brightnessContrast} from '@luma.gl/shadertools';
|
|
```
|
|
|
|
## Shader Modules
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/mountain.jpg" />
|
|
<p><i>Original Image</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### brightnessContrast
|
|
|
|
Provides additive brightness and multiplicative contrast control.
|
|
|
|
- `brightness` -1 to 1 (-1 is solid black, 0 is no change, and 1 is solid white). Default value is `0`.
|
|
- `contrast` -1 to 1 (-1 is solid gray, 0 is no change, and 1 is maximum contrast). Default value is `0`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/brightness.jpg" />
|
|
<p><i>Brightness / Contrast Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### hueSaturation
|
|
|
|
Provides rotational hue and multiplicative saturation control. RGB color space can be imagined as a cube where the axes are the red, green, and blue color values.
|
|
|
|
Hue changing works by rotating the color vector around the grayscale line, which is the straight line from black (0, 0, 0) to white (1, 1, 1).
|
|
|
|
Saturation is implemented by scaling all color channel values either toward or away from the average color channel value.
|
|
|
|
- `hue` -1 to 1 (-1 is 180 degree rotation in the negative direction, 0 is no change, and 1 is 180 degree rotation in the positive direction). Default value is `0`.
|
|
- `saturation` -1 to 1 (-1 is solid gray, 0 is no change, and 1 is maximum contrast). Default value is `0`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/hue.jpg" />
|
|
<p><i>Hue / Saturation Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### noise
|
|
|
|
Adds black and white noise to the image.
|
|
|
|
- `amount` 0 to 1 (0 for no effect, 1 for maximum noise). Default value is `0.5`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/noise.jpg" />
|
|
<p><i>Noise Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### sepia
|
|
|
|
Gives the image a reddish-brown monochrome tint that imitates an old photograph.
|
|
|
|
- `amount` 0 to 1 (0 for no effect, 1 for full sepia coloring). Default value is `0.5`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/sepia.jpg" />
|
|
<p><i>Sepia Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### vibrance
|
|
|
|
Modifies the saturation of desaturated colors, leaving saturated colors unmodified.
|
|
|
|
- `amount` -1 to 1 (-1 is minimum vibrance, 0 is no change, and 1 is maximum vibrance). Default value is `0`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/vibrance.jpg" />
|
|
<p><i>Vibrance Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### vignette
|
|
|
|
Adds a simulated lens edge darkening effect.
|
|
|
|
- `size` 0 to 1 (0 for center of frame, 1 for edge of frame). Default value is `0.5`.
|
|
- `amount` 0 to 1 (0 for no effect, 1 for maximum lens darkening). Default value is `0.5`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/vignette.jpg" />
|
|
<p><i>Vignette Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### tiltShift
|
|
|
|
Simulates the shallow depth of field normally encountered in close-up photography, which makes the scene seem much smaller than it actually is. This filter assumes the scene is relatively planar, in which case the part of the scene that is completely in focus can be described by a line (the intersection of the focal plane and the scene). An example of a planar scene might be looking at a road from above at a downward angle. The image is then blurred with a blur radius that starts at zero on the line and increases further from the line.
|
|
|
|
- `start` [x, y] coordinate of the start of the line segment. `[0, 0]` is the bottom left corner, `[1, 1]` is the up right corner. Default value is `[0, 0]`.
|
|
- `end` [x, y] coordinate of the end of the line segment. `[0, 0]` is the bottom left corner, `[1, 1]` is the up right corner. Default value is `[1, 1]`.
|
|
- `blurRadius` The maximum radius of the pyramid blur in pixels. Default value is `15`.
|
|
- `gradientRadius` The distance in pixels from the line at which the maximum blur radius is reached. Default value is `200`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/tilt_shift.jpg" />
|
|
<p><i>Tilt Shift Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### triangleBlur
|
|
|
|
This is the most basic blur filter, which convolves the image with a pyramid filter. The pyramid filter is separable and is applied as two perpendicular triangle filters.
|
|
|
|
- `radius` The radius of the pyramid in pixels convolved with the image. Default value is `20`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/triangle_blur.jpg" />
|
|
<p><i>Triangle Blur Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### zoomBlur
|
|
|
|
Blurs the image away from a certain point, which looks like radial motion blur.
|
|
|
|
- `center` [x, y] coordinate of the blur origin. `[0, 0]` is the bottom left corner, `[1, 1]` is the up right corner. Default value is `[0.5, 0.5]`.
|
|
- `strength` The strength of the blur. Values in the range 0 to 1 are usually sufficient, where 0 doesn't change the image and 1 creates a highly blurred image. Default value is `0.3`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/zoom_blur.jpg" />
|
|
<p><i>Zoom Blur Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### colorHalftone
|
|
|
|
Simulates a CMYK halftone rendering of the image by multiplying pixel values with a four rotated 2D sine wave patterns, one each for cyan, magenta, yellow, and black.
|
|
|
|
- `center` [x, y] coordinate of the pattern origin. `[0, 0]` is the bottom left corner, `[1, 1]` is the up right corner. Default value is `[0.5, 0.5]`.
|
|
- `angle` The rotation of the pattern in radians. Default value is `1.1`.
|
|
- `size` The diameter of a dot in pixels. Default value is `4`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/color_halftone.jpg" />
|
|
<p><i>Color Halftone Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### dotScreen
|
|
|
|
Simulates a black and white halftone rendering of the image by multiplying pixel values with a rotated 2D sine wave pattern.
|
|
|
|
- `center` [x, y] coordinate of the pattern origin. `[0, 0]` is the bottom left corner, `[1, 1]` is the up right corner. Default value is `[0.5, 0.5]`.
|
|
- `angle` The rotation of the pattern in radians. Default value is `1.1`.
|
|
- `size` The diameter of a dot in pixels. Default value is `3`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/dot_screen.jpg" />
|
|
<p><i>Dot Screen Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### edgeWork
|
|
|
|
Picks out different frequencies in the image by subtracting two copies of the image blurred with different radii.
|
|
|
|
- `radius` The radius of the effect in pixels. Default value is `2`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/edge_work.jpg" />
|
|
<p><i>Edge Work Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### hexagonalPixelate
|
|
|
|
Renders the image using a pattern of hexagonal tiles. Tile colors are nearest-neighbor sampled from the centers of the tiles.
|
|
|
|
- `center` [x, y] coordinate of the pattern center. `[0, 0]` is the bottom left corner, `[1, 1]` is the up right corner. Default value is `[0.5, 0.5]`.
|
|
- `scale` The width of an individual tile in pixels. Default value is `10`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/hexagon.jpg" />
|
|
<p><i>Hexagonal Pixelate Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### ink
|
|
|
|
Simulates outlining the image in ink by darkening edges stronger than a certain threshold. The edge detection value is the difference of two copies of the image, each blurred using a blur of a different radius.
|
|
|
|
- `strength` The multiplicative scale of the ink edges. Values in the range 0 to 1 are usually sufficient, where 0 doesn't change the image and 1 adds lots of black edges. Negative strength values will create white ink edges instead of black ones. Default value is `0.25`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/ink.jpg" />
|
|
<p><i>Ink Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### bulgePinch
|
|
|
|
Bulges or pinches the image in a circle.
|
|
|
|
- `center` [x, y] coordinate of the center of the circle of effect. `[0, 0]` is the bottom left corner, `[1, 1]` is the up right corner. Default value is `[0.5, 0.5]`.
|
|
- `radius` The radius of the circle of effect in pixels. Default value is `200`.
|
|
- `strength` -1 to 1 (-1 is strong pinch, 0 is no effect, 1 is strong bulge). Default value is `0.5`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/bulge_pinch.jpg" />
|
|
<p><i>Bulge Pinch Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### swirl
|
|
|
|
Warps a circular region of the image in a swirl.
|
|
|
|
- `center` [x, y] coordinate of the center of the circular region. `[0, 0]` is the bottom left corner, `[1, 1]` is the up right corner. Default value is `[0.5, 0.5]`.
|
|
- `radius` The radius of the circular region in pixels. Default value is `200`.
|
|
- `angle` The angle in radians that the pixels in the center of the circular region will be rotated by. Default value is `3`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/uber-common/deck.gl-data/master/images/samples/glfx/results/swirl.jpg" />
|
|
<p><i>Swirl Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
### magnify
|
|
|
|
Apply magnify effect to the surrounding area of a given position.
|
|
|
|
- `screenXY`: x, y position in screen coords, both x and y is normalized and in range `[0, 1]`. `[0, 0]` is the up left corner, `[1, 1]` is the bottom right corner. Default value is `[0, 0]`.
|
|
- `radiusPixels`: effect radius in pixels. Default value is `100`.
|
|
- `zoom`: magnify level. Default value is `2`.
|
|
- `borderWidthPixels`: border width of the effect circle, will not show border if value \<\= 0.0. Default value is `0`.
|
|
- `borderColor`: border color of the effect circle. Default value is `[255, 255, 255, 255]`.
|
|
|
|
<table style={{border: 0}} align="center">
|
|
<tbody>
|
|
<tr>
|
|
<td align="center">
|
|
<img height="340" src="https://raw.githubusercontent.com/visgl/deck.gl-data/master/luma.gl/examples/effects/magnify.png" />
|
|
<p><i>Swirl Effect</i></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
## Remarks
|
|
|
|
- Coordinate is based on the original image. `[0, 0]` is the bottom left corner, `[1, 1]` is the up right corner.
|