Bloom Spatial Photo Filter

This filter adds a soft, glowing effect to an image by blurring the bright areas. It is often used to create a dreamy or ethereal look.

Bloom
Tap on the image above and select 'View Spatial Photo' (only works in Vision Pro Safari).

Parameters

  • Radius: The radius of the bloom effect. This parameter controls the extent of the blur applied to the bright areas of the image.

  • Intensity: The intensity of the bloom effect. This parameter controls the strength of the glow applied to the bright areas of the image.

PIPELINE Node Source Code

CIFilter : CIBloom


override func getCIFilter(_ ciImage: CIImage)->CIFilter
{
    
    var currentCIFilter: CIFilter
    if ciFilter != nil {
        currentCIFilter = ciFilter!
    } else {
        currentCIFilter = CIFilter(name: type)!
        ciFilter=currentCIFilter
    }
    currentCIFilter.setValue(ciImage, forKey: kCIInputImageKey)
    currentCIFilter.setValue(radius, forKey: kCIInputRadiusKey)
    currentCIFilter.setValue(intensity, forKey: kCIInputIntensityKey)

    return currentCIFilter
    
}