Nodo Desplazar¶
El nodo Desplazar desplaza la posición de los píxeles basándose en un vector de entrada.
Este nodo puede ser usado para modelar fenómenos naturales, como la distorsión causada por aire caliente, refracciones de vidrio desparejo o para efectos de video surrealistas.
Entradas¶
- Imagen
Entrada de color estándar.
- Desplazamiento
Input of the displacement map. If the input is color it’s implicitly converted in the vector input, the first channel (red) value determines displacement along X axis. The second channel (green) the displacement along Y axis. If the input is a grayscale image, where both the channel values are equal, the input image will be displaced equally in both X and Y directions.
Muestreo¶
- Interpolación
Determines how pixel values are interpolated when scaling or transforming images.
- Más cercano:
Uses the value of the closest pixel with no smoothing. This is the fastest method and is well-suited for pixel art or low-resolution images where sharp, blocky edges are desirable. In animations, motion appears in single-pixel steps, which can cause visible jittering.
- Bilineal:
Averages the values of surrounding pixels to create a smoother result than Nearest. Provides a good balance between performance and visual quality.
- Bicúbico:
Computes a weighted average of a larger neighborhood of pixels for even smoother results. Ideal for photographic images or gradients where preserving fine detail is important.
- Anisótropo:
Adjusts interpolation based on the direction and scale of the transformation. Helps reduce blurring or aliasing when scaling at steep angles or uneven resolutions, especially useful in textures viewed at oblique angles or in detailed 3D projections.
- Extensión X/Y
The extension mode applied to the X axis.
- Recortar (o Clip):
Areas outside of the image are filled with transparency.
- Extender:
Areas outside of the image are filled with the closest boundary pixel in the image.
- Repetir:
Areas outside of the image are filled with repetitions of the image.
Nota
This option is not available for the Anisotropic Interpolation mode.
Salidas¶
- Imagen
Salida de color estándar.