Type Alias BackgroundSegmentationVideoFrameProcessorConfig

BackgroundSegmentationVideoFrameProcessorConfig:
    | {
        blurStrength?: BackgroundSegmentationBlurStrength;
        replacementColor?: never;
        replacementImageURL?: never;
        type: BLUR;
    }
    | {
        blurStrength?: never;
        replacementColor?: never;
        replacementImageURL: string;
        type: IMAGE_REPLACEMENT;
    }
    | {
        blurStrength?: never;
        replacementColor: string;
        replacementImageURL?: never;
        type: COLOR_REPLACEMENT;
    }

Configuration for background segmentation processor with mutually exclusive effect properties.