splat-transform API Reference - v2.5.2
    Preparing search index...

    Type Alias FilterCluster

    Filter Gaussians to keep only those in the connected cluster at a seed position.

    GPU-voxelizes the scene at a coarse resolution, finds the connected component of occupied blocks containing the seed, and keeps only Gaussians whose AABB overlaps that cluster.

    type FilterCluster = {
        kind: "filterCluster";
        minContribution?: number;
        opacityCutoff?: number;
        seed?: Vec3;
        voxelResolution?: number;
    }
    Index

    Properties

    kind: "filterCluster"

    Action type identifier.

    minContribution?: number

    Minimum Gaussian contribution at a cluster voxel center to be kept. Default: 0.1

    opacityCutoff?: number

    Opacity threshold for solid voxels. Default: 0.999

    seed?: Vec3

    Seed position for finding the connected component. Default: Vec3(0,0,0)

    voxelResolution?: number

    Voxel size in world units for coarse voxelization. Default: 1.0