VFX-JS
    Preparing search index...

    Type Alias DatamoshParams

    type DatamoshParams = {
        blockSize: number;
        chromaGain: number;
        colorSpace: DatamoshColorSpace;
        dup: number;
        searchRange: number;
        searchStep: number;
        useResidual: boolean;
        view: DatamoshView;
    }
    Index

    Properties

    blockSize: number

    Motion-estimation block size in px.

    chromaGain: number

    Chroma saturation boost (YCbCr output). 1 = unchanged.

    colorSpace: DatamoshColorSpace

    Color model. "ycbcr" is 4:2:0 (half-res chroma w/ truncated MV).

    dup: number

    P-frame duplication: re-apply the frame's motion this many extra
    times per frame, dragging the accumulator further along the field
    (the bloom/smear amplifier). 0 = one normal application.

    searchRange: number

    Motion search radius, in steps. Coverage = searchRange * searchStep px.

    searchStep: number

    Pixels per search step. Widens coverage at a fixed candidate count.

    useResidual: boolean

    Add the residual during decode (off = pure motion).

    Stage shown on the canvas.