HoloField - Boundary-to-Volume Generator
    Preparing search index...

    Interface PipelineMetadata

    Records the provenance of a dataset as it passes through the pipeline.

    Metadata from each processing stage is accumulated in sequence, allowing a dataset to retain the identity and configuration of the operations that produced it.

    interface PipelineMetadata {
        boundary?: {
            description: string;
            displayName: string;
            mathFunction: string;
        };
        decoder?: DecoderMetadata;
        sampler?: {
            description: string;
            displayName: string;
            mathFunction?: string;
            samplerType: "boundary"
            | "pointCloud"
            | "voxel";
        };
    }
    Index
    boundary?: { description: string; displayName: string; mathFunction: string }
    decoder?: DecoderMetadata
    sampler?: {
        description: string;
        displayName: string;
        mathFunction?: string;
        samplerType: "boundary" | "pointCloud" | "voxel";
    }