MADMask Avisynth filter
MADMask is a simple hack of MotionMask found in Mpeg2Dec.  I have added four different motion detetion methods (all based on MAD or MSE calculations) and have changed the denoise option to be a little finer.

I created this filter to be used with MaskedMix to filter very noisy sources.  This filter was used in the
KVCD Script Contest.

This filter operates on YUV sources only and is safe for interlaced material.

Usage:

MADMask(
      clip
      motion detection method
      threshold
      denoise
      fast


Example of use in Noise removal:

movingclip=temporalcleaner(5,10)
staticclip=temporalsmoother(4)
mask=MADMask(5,30,true,false)
maskedmix(staticclip,movingclip,mask)


Downloads:
Avisynth 2.0: MADMAsk
MADMask Source
Thread about noise removal using this filter at KVCD
Hosted by www.Geocities.ws

1