SDK JS
    Preparing search index...

    Interface SpzContainerDecoderOptions

    Construction options for SpzContainerDecoder.

    interface SpzContainerDecoderOptions {
        cullStray?: boolean | { factor?: number };
        wasmInit?: WasmHostInit;
    }
    Index

    Properties

    cullStray?: boolean | { factor?: number }

    Cull far-outlier "stray" splats before quantization (see computeStrayMask) — the sparse ghost-fog ball 3DGS captures carry around their subject. Default ON; pass false for a 1:1 faithful decode, or { factor } to tune the cutoff (multiple of the 90th-percentile distance from the robust center; default 1.5).

    wasmInit?: WasmHostInit

    Where to load the decoder .wasm from. Omit in the browser to let the bundler resolve the package-sibling wasm; in Node/Bun (or for a cross-origin CDN bundle) pass wasmBytes/wasmUrl. See WasmHostInit; the wasmBytes/wasmUrl precedence is documented once on @bitruvius/geo-core's BitruviusConfig.