On this page:
9.4.1 A fancier blur

9.4 BlurLayers

Blurs images using a higher quality technique than the Blur effect. Images are blurred by superimposing layers of lower-resolution translucent copies on the original.

 

Parameters

 

Default

 

Range    

 

Description

 

NumberOfLayers

 

7

 

> 0

 

The number of layers of the input image to superimpose.

 

 

 

 

 

LayerOffset

 

0.03

 

> 0.0

 

The offset between the layers. The offset is randomized a bit.

 

 

 

 

 

LayerAlpha

 

0.2

 

( 0.0 - 1.0 )

 

The opacity of the Layers. Note that Layer0 always has an alpha of 1.0. All subsequent layers will have an alpha specified by this parameter.

 

 

 

 

 

LevelOfDetail

 

4.5

 

>= 0.0

 

The amount of blur to apply to the layers other than the original image.

Input pattern: (A)

9.4.1 A fancier blur
; muSE v2
; 
;  My super blurry style.
;  This style blurs the user image.
 
(style-parameters)
 
(segment-durations 8.0)
 
(define muvee-global-effect (effect-stack
                                 (effect "CropMedia" (A))
                                 (effect "Perspective" (A))))
 
(define muvee-segment-effect (effect "BlurLayers" (A)
                                     (param "NumberOfLayers" 4)))

.