SMDegrain

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (added category)
Line 5: Line 5:
 
|
 
|
 
* [http://www.mediafire.com/download/9kd7d6ba2l0m6qd/SMDegrain+v.3.1.2d.zip SMDegrain v.3.1.2d.zip]<br/>
 
* [http://www.mediafire.com/download/9kd7d6ba2l0m6qd/SMDegrain+v.3.1.2d.zip SMDegrain v.3.1.2d.zip]<br/>
 +
* [http://pastebin.com/ujEiSCwV SMDegrain v.3.1.2d 16 11 2015 mod]<br/>
 
* VapourSynth: [[HAvsFunc]]
 
* VapourSynth: [[HAvsFunc]]
 
| 4=Spatial-Temporal Denoisers
 
| 4=Spatial-Temporal Denoisers

Revision as of 01:14, 1 January 2016

Abstract
Author Caroliano, Dogway
Version v3.1.2d
Download
Category Spatial-Temporal Denoisers
Requirements
License
Discussion VideoHelp, Doom9

SMDegrain, the Simple MDegrain Mod, is mainly a convenience function for using MVTools. It is not a magic function (the magic comes from mvtools), it just takes the repetitive code blocks needed for mvtools+mdegrain denoising and wraps them into this function.

It has internal switches for interlaced or YUY2 content, saving you from writing long lines of code and preventing from possible mistakes. YUY2 is even automatically detected. Apart of that it adds some small and simple enhancements listed below, like easy prefilters, slightly better motion vectors (thanks to an internal TV->PC luma expansion and the possibility of dark enhancement), easy nnedi3 subpixel accuracy, globals import/export, show panel, and contra-sharpening option.

Contents

Dependencies

MaskTools2 and MVTools (mod versions recommended)

Optional

  • Dither for 16 bit processing (v1.26.5 or higher)
  • RgTools for contrasharp=true or prefilter=1 or 2
  • LSFmod for contrasharp > 0.0
  • dfttest for prefilter=3
  • nnedi3 for subpixel=3

Beware, tp7's plugin mods have no YUY2 support, require AviSynth 2.6a5 or latest Set's MT for v2.6, and Visual C++ 2012 Redistributable.

Aknowledgements

Original SMDegrain() by Caroliano

This function uses code from Didée, and cretindesalpes' creations, and has parts inspired by LaTo's functions (old readme, Show panel, etc) and Jawed's Killer() function, apart of relying on third-party tools for certain features.

Special thanks go to: cretindesalpes, Didée, Gavino, Sagekilla, and MVtools people.

Introduction

The benefit of using SMDegrain over directly calling MDegrain is:

  • High bitdepth denoising: This is the first wrapper function to support 32bit (16bit pipeline) MDegrain denoising.
  • Higher temporal radius (tr>3): The MVTools mod (and hence this script) also allows for hack-free higher temporal radius.
  • Contrasharpening: The pretty much standarized sharpening method created by Didée is blended into the function, so you can easily use it in 16bit pipelines. An strength biased method is also possible. A CClip parameter is also supplied so you can choose another source to sharpen from, other than the default SMDegrain() input.
  • YUY2 support: It automatically and fully supports YUY2.
  • Interlaced support: It supports interlaced sources with most parameters as well.
  • Extended Subpixel Accuracy: nnedi3 is allowed as a subpixel filter, not necessary in most cases, but if you are quality mad try to set it on.
  • Better Motion Vectors: An internal conversion from TV levels (reduced values range) to PC levels (extended values range) is done to the clip the motion analysis will be performed on, so you can get better motion vectors (up to 16%)
  • Prefilters: An easy parameter to load generalist prefilters that perform well in most situations. It also accepts loading your personal prefiltered clips.
  • Motion Filters: New in version 3.0d. It will allow you to filter those parts where SMDegrain() couldn't find a matching block for denoising. One use for it would be spatial denoisers or deblockers since high-motion areas are prone to heavy blocking and artifacts.
  • Global Motion Vector In/Out: Reuse motion vectors globals for faster processing, or just use SMDegrain() as a shortcut for creating nice quality motion vectors.
  • RefineMotion Option (MRecalculate): Slower, but sometimes a big quality boost.
  • Show Panel: Everything is off by default, but some settings change in context. Check what is happening behind the scenes and have a fast look at all your settings.
  • Robust: Everything of the above works with each other no problem (interoperability), also in the process some error proof, bugfixes and bug workarounds were implemented or at least warned so you know that most of what is done is reliable, bugs free and optimized. The general idea is to serve as an user friendly front end for vanilla mvtools2+mdegrain or as the original script creator entitled "To make your scripts shorter and less geeky". Most parameters are turned off or defaulted to mvtools2 defaults and features are based on popular general conceived procedures.

Parameters are arranged in 3 blocks.

  • Basic: For people who just need the most basic parameters because either they don't have the time, knowledge or interest into looking for complex settings. Or they are content with defaults (pretty much mvtools defaults)
  • High Bit Depth: There's not much to think about this. This just enables (default is disabled), high bit depth denoising. That is, more quality, but also needs more processing power hence slower.
  • Advanced: If you run into some problems, are nitpicking or just want to fine tune your settings according to the source, have a look at this block, it contains the rest and bulk of the function parameters.

Temporal denoising is a widespread procedure for noise cleaning in most type of video sources. The only limitation for SMDegrain() being when there are (very) high levels of grain, in which case you would need to rely on more "creative" and source centric solutions (see this and prefilter notes), but those are the rare cases.

To picture what the function does, a simple SMDegrain() call matches the next code (for SD resolutions):

super_search = Dither_Luma_Rebuild(S0=1.0,c=0.0625).MSuper(rfilter=4)

bv2 = super_search.MAnalyse(isb = true,  delta = 2, overlap= 4)
bv1 = super_search.MAnalyse(isb = true,  delta = 1, overlap= 4)
fv1 = super_search.MAnalyse(isb = false, delta = 1, overlap= 4)
fv2 = super_search.MAnalyse(isb = false, delta = 2, overlap= 4)

MDegrain2(MSuper(levels=1), bv1, fv1, bv2, fv2, thSAD=300, thSADC=150)

As you see no wizardry. The only changes made are the TV->PC luma expansion (Dither_Luma_Rebuild(S0=1.0,c=0.0625) similar to color_yuv(levels="TV->PC")) so you have more range to detect motion vectors, the rfilter=4 for a bit more quality super search, the changed default of overlap from 0 to 4 and thSAD and thSADC from 400 to 300 and 150 respectively for safer results. Nothing else. The problem is that as soon you want to change a little thing like say temporal radius it requires you to edit in more than a few places, so this is very annoying and so forth the main reason for SMDegrain().

Using the filter

  • Input can be YV12 or YUY2, and must be TV range (which is normal). It's also recommended to be in modulus 16 size (resolution multiple of 16), although not strictly necessary.
  • Crop first (when not interlaced).
  • Recommended to deblock if blocking is present, before crop (when cropping) and SMDegrain(). Or you can use prefilter=3 which is also a good deblocker (dfttest) and let SMDegrain() clean the blocking for you.
  • Default output mode(dithering) for lsb=true (when non interlaced) is ordered dither (optimized for encoding), so it is not recommended to keep filtering non-edge areas of your source, you can instead use mode=6 (error diffusion) or lsb_out=true and keep filtering in 16bit
  • Read the prefilter setting explanation for solutions to problematic sources

Ready-to-run Samples

I consider this a good starting point where to start tweaking, whether be it for quality or speed:

SMDegrain(tr=2,thSAD=250,contrasharp=true,refinemotion=true,lsb=true)

A basic, fast, yet very functional call for light grain (mvtools2+masktools2 only needed)

SMDegrain(tr=1,thSAD=300,contrasharp=true)

A typical more worked call compatible with official mvtools2 (mvtools2+masktools2 only needed)

SMDegrain(tr=2,thSAD=300,interlaced=true,prefilter=1,contrasharp=true)

Good compromise between speed and quality (denoising with high precision)

SMDegrain(tr=2,thSAD=300,contrasharp=true,refinemotion=true,lsb=true)

Similar to the previous example, the next is a personal preference. Turned all chroma off for safeness (chroma is rarely temporal-reliable enough) and speed.

SMDegrain(tr=2,thSAD=300,contrasharp=true,refinemotion=true,lsb=true,chroma=false,plane=0)

This is a good example to show that interlaced YUY2 sources can be processed seamlessly.

# mod4 (modulus 4) interlaced YUY2 source
SMDegrain(tr=1,thSAD=250,interlaced=true,contrasharp=true,lsb=true)

HD sources are detected automatically, and as so settings are optimized for speed; pel=1, hpad=0, vpad=0, blksize=32, overlap=16, truemotion=false

# HD source (from 1100px wide or 600px high up)
SMDegrain(tr=2,thSAD=180,prefilter=2,contrasharp=30,refinemotion=true,lsb=true,chroma=false,plane=0)

For dealing with dark scenes (you could also add truemotion=false)

SMDegrain(tr=3,thSAD=300,contrasharp=true,str=2.0,refinemotion=true,lsb=true)

Tackling a grainy source:

pre=fluxsmootht(3).removegrain(11)
SMDegrain(tr=6,thSAD=500,contrasharp=30,prefilter=pre,str=1.2,refinemotion=true,lsb=true)

Here 2 things are shown; how to work on a 16bit pipeline, and reference a prior state of the script for contrasharp.

sharp=last
dfttest(tbsize=1,sigma=10,lsb=true)

SMDegrain(tr=3,thSAD=300,CClip=sharp,lsb_in=true,lsb_out=true)

LinearResize(854,480,lsb_in=true, mode=0)

(Re)using motion vectors globals

SMDegrain(tr=1,thSAD=400,prefilter=3,str=1.4,globals=3)    # Output vectors only
MFlowFps(Super, bv1, fv1, num=60,den=1)

Parameters

SMDegrain (clip input, int "tr", int "thSAD", int "thSADC", bool "RefineMotion", val "contrasharp", clip "CClip", bool "interlaced", int "plane", int "Globals", int "pel", int "subpixel", val "prefilter", clip "mfilter", int "blksize", int "overlap", int "search", bool "truemotion", int "limit", int "limitc", int "thSCD1", int "thSCD2", bool "chroma", int "hpad", int "vpad", bool "lsb", bool "lsb_in", bool "lsb_out", int "mode", val "Show", float "Str", float "Amp")

Basic

tr int (1-128, default 2)

Temporal radius, selects the MDegrain to use. This can be considered the strength of the denoising. Higher is generally better, but also much slower and each extra frame gives less improvement.
tr 4+ requires Dither's MVTools2 mod. Max 64 for interlaced.

thSAD int = 300
thSADC int = 150

"Sum of Absolute Differences" threshold. This is the spatial difference threshold where the motion search will consider whether to denoise given the formula:
Denoise_Weight = max( 0, 1 - 2*blockSAD² / (thSAD² + blockSAD²) )
This spatial difference will be compared in blocks (blksize). If your noise is not getting into consideration for the denoising try raising this value, or reduce its SAD with previous prefiltering. You can alternatively raise blksize, which will likely even blocks SAD. Low values can result in staggered/blotchy denoising, large values can result in ghosting and artifacts. Values in the range 200~600 are usual.
thSADC is the same logic applied to chroma planes, since there are less differences on the chroma planes it uses by default thSAD/2 for safer chroma results.
Recommendation: Use slightly greater values than you are used to in other mdegrain based functions since the internal clip for the motion search in SMDegrain() has the contrast increased.

Contrasharp bool (True/False, default False)
Contrasharp int (0-100, default -)

Contrasharpening is a technique that compares the differences between the clip before blurring (original) and after blurring (filtered), and sharpens locally with consequent strength. By default the "sharp" clip is the input, the "after" clip is the denoised clip. Alternately, a "before" clip can be specified with CClip (See Advanced).
  • True: use Didée's Contrasharpening() function (ContraHD() for HD) which "Sharpens the denoised clip, but doesn't add more to any pixel than what was removed previously." In the practice you will get a slightly sharper result than the source, which is welcome.
  • An integer: LSFmod() will be used instead. It will be much slower, but maybe better for certain sources. Its value will serve as a contrasharpening multiplier, use one around 50 for similar strength as Contrasharpening(). LSFmod is less-suitable for HD sources.

RefineMotion bool = False

Refines and recalculates motion data of previously estimated (by MAnalyse) motion vectors. Turn it on for better motion vectors, specially when dealing with ghosting issues, small details or lineart fading and whatnot.
Caution: It won't help much if you use a prefilter so strong that blurs too much or kills all the details you are aiming to protect in first place.

plane int (0-4, default 4)

Select the planes you wish to process:
  • 0: luma only
  • 1: chroma U
  • 2: chroma V
  • 3: both chromas
  • 4: all (Default)
Caution: plane=1-4 can sometimes create chroma smearing. In such case I recommend denoising chroma planes in the spatial domain.

Interlaced bool = False

If you want to denoise an interlaced source set this parameter to true. Output will also be interlaced. If you pair this with lsb_out=true then you will have to Weave().DitherPost(mode=6,interlaced=true) when converting back to 8 bit.

High Bit Depth Processing And Dithering

All High Bit Depth parameters require Dither and MVTools 2.6+. The VapourSynth version doesn't use these parameters; it automatically outputs the same bitdepth as the input.

lsb_in bool = False

Set true if you use a 16 bits filter chain. *(EXPERIMENTAL, use under test environment)

lsb_out bool = False

Output to 16-bit instead of 8-bit. Use the helpers at the end of the SMDegrain() script to use Ditherpost() with YUY2 formats.

lsb bool = False

This enables 32 bit depth precision for denoising. You gain extra denoising accuracy, most noticeable in the prevention of banding in flat areas. Automatically set if either lsb_in or lsb_out are enabled.

mode int (-1-8, default 0)

This is the mode of DitherPost when lsb_out=False, as a dithering method must be chosen for the 32bit->8bit conversion. (Interlaced content is locked to mode=6) The default mode=0 will help you optimize the dithering for optimum encodings when no further non-edge processing is done. Use mode=6 (error diffusion) if further processing will be done.

Advanced

pel int (1,2,4, default 2)

Accuracy of the motion estimation:
  • 1: full-pixel (Default for HD)
  • 2: half-pixel (Default for SD)
  • 4: quarter-pixel (often more accurate, but much slower and not always better)

subpixel int (0-3, default 2)

Subpixel interpolation method for pel=2 or 4. This is the 'sharp' parameter in MSuper(), although it isn't related to output sharpness but better accuracy for the motion estimation.
  • 0: bilinear (softest)
  • 1: bicubic (4 tap Catmull-Rom)
  • 2: sharper Wiener (6 tap, similar to Lanczos) (Default)
  • 3: nnedi3 (very high quality: useful for small sources but usually overkill. requires plugin)

prefilter int (-1-3, default -1)
prefilter clip = None

  • -1: off (Default)
  • 0: light controlled gauss blur
  • 1: mild median/gauss blur
  • 2: strong median/gauss blur
  • 3: dfttest (spatial)
  • clip: supply your own
Denoises a version of the clip that will be used to obtain the motion vectors. Useful for very damaged/grainy sources, this will help to get better motion vectors.
For sources with Gibbs noise, especially on anime, try prefilter=1 or 2 or better yet strong median filters (through clip input) in order to soothe the high SAD of sharp edges. For blocky sources, or a general more quality/safer prefilter use option 3 (dfttest)
By default dfttest outputs a sstring txt file to your script folder, you can delete it. This doesn't happen when using the modded dfttest (version 1.9.2 or higher) of the Dither tools.
For HD sources prefilter=2 makes more sense than 1, because it uses a wider denoising window.
If instead you want to use your own prefilter denoiser, just define it in a variable and reference it here. Remember to:
  • Feed always 8 bit clips.
  • Input in fields for interlaced content *(read below)
  • Feed here planar ( by using Interleaved2Planar() ) YUY2 clips (not interleaved) when working with YUY2 sources.
You will likely want to use spatial denoisers like median filters (removegrain=17, medianblur, etc). For very grainy or fizz grain noise you can try prefiltering in temporal or if this is not enough, try adding a new SMDegrain() line again but without globals. Use lsb_in, lsb_out according so results are smooth. You can even use SMDegrain() as a prefilter for SMDegrain() in very temporal unstable sources.
Another trick for fizz grain is to serve a prefiltered clip where bright values are more denoised than dark values, you can do this through luma masks with masktools2 code. Search in Doom9 for reference.
For interlaced sources remember:
Spatial filtering: pre=separatefields().spatial_prefilters_here()
Temporal filtering: pre=separatefields().interleave(selecteven().temporal_filters(),selectodd().temporal_filters())
SMDegrain() (and MDegrain) is likely to produce blending artifacts or oversmooth in dark areas specially on cartoons, to tackle this see RefineMotion or expand the luma range in the darks. For this there are many options, you can use your preferred gamma enhancer and input it as the prefilter, or use the examples below for linear brightening (masktools2) and input it as a prefilter as well. Or at last and the recommended solution, to use the built-in Str (strength) and Amp (amplitude) parameters for a curve type dark enhancement, check the effects by enabling Show and changing your previewing conditions to PC levels.
For brightening dark values linearly (brighter parts less brightening)
str=1
mt_lut("x x "+string(str)+" 6 * - 255 - abs 255 / ^ x 1 - abs +")
Or for a more contrasty image (although not as much dark enhancing - not linear)
str=40
mt_lut("x x "+string(str)+" 6 * - 255 - abs 255 / ^ "+string(str)+" / x 1 - abs +")
Good resources for custom prefilters:
Notes: To sum it up; generally in denoising, temporal filters are always preferred due to its natural look (versus spatial filters). But more often than not for good results prefiltering plays a key role on the output quality, and setting it up nicely can be looked as an art by itself.
If there's a reached point where no prefiltering, no thSAD tweaking, etc, makes able to denoise a certain motion part/area/scene, then this is due to the motion vectors preventing them from being "denoised" (also read "artifacted"), in which case you will need to rely on alternative solutions (motion compensation, filters like MCTemporalDenoise(), TemporalDegrain(), Multilevel MDegrain, etc) or just use plain spatial filters with motion masks. Creating these discerning masks for static and motion scenes and combining them is a research task on the end user side.

mfilter clip = None

Motion Filter, an optional user-supplied clip that will be passed through those areas where SMDegrain() couldn't find a matching block, normally high motion areas. One use for it would be to to use spatial filters, like deblockers or blurring filters that mimic motion blur.

Str float (0.0-8.0, default 1.0)

Gamma correction. With this parameter you control the strength of the brightening of the prefilter clip, good for when problems with dark areas arise. Using this internally instead of externally creates less quantization artifacts, since it's done in the same stage as the TV->PC range conversion.

Amp float (0.0-1.0, default 0.0625)

Used when Str <> 1.0. This defines the amplitude of the brightening in the luma range, for example by using 1.0 all the luma range will be used and the brightening will find its peak at luma value 128 in the original. Default is 0.0625 (1.0/16) which just sits over luma value 16 (256/16) This and Str are extrapolated arguments from cretindesalpes' function, you can find a graph and more insight explanations at the original post.
Check these 2 parameters effects by enabling show.

blksize int (4,8,16, default 8 for SD, 16 for HD)

Size of a block (horizontal x vertical). Larger blocks are faster and less sensitive to noise, but also less accurate.

overlap int = blksize/2

Must be *even* and *less* than block size. Common values: blksize/4 or blksize/2. Larger overlap looks slightly better and runs slower.

Search int (0-7, default 4)

This is the search of MAnalyze.

Truemotion bool = True for SD, False for HD

Truemotion is a preset of some MVAnalyze parameter values. It allows easy to switch default values of all "true motion" parameters at once. Set it 'true' for true motion search (high vector coherence), set it 'false' to search motion vectors with best SAD. Truemotion is slower and may blur textures and thin details more, but will usually remove more noise.
For HD sources where the main problems are just excessive grain, I have defaulted it to false, this is not only faster but honors detail accuracy (the main existing point for HD sources) and overall object shading.

Chroma bool = True

Set false to totally ignore chroma for finding motion vectors, for more speed with little cost in quality or when your chroma is too bad to find good matches. Don't process chroma planes without chroma vectors, MVTools doesn't seem to work right.

Hpad int = blksize for SD, 0 for HD
Vpad int = blksize for SD, 0 for HD

Horizontal/vertical padding added to source frame (left, right, top, and bottom) for better motion estimation near borders.
Try to have clean borders in your source (no NAB/black borders) to start with before tweaking this setting. If necessary, crop beforehand ideally in multiples of 16. Turn it to 0 if you are running out of memory.

thSCD1 int = based on blksize: 4= >100, 8= >400, 16= >1600

Threshold which decides whether a block has changed between the previous frame and the current one, used to tweak the scene change detection. Raising it will lower the number of blocks detected as changed. It may be useful for noisy or flickered video. To fix blending on scene changes on dark scenes, first try Str and Amp.

thSCD2 int (0-250, default 130)

Threshold which sets how many blocks have to change for the frame to be considered as a scene change.

limit int (1-255, default 255)
limitC int (1-255, default 255)

Maximal change of pixel luma/chroma, to prevent some artifacts.

CClip clip = None

Optional sharp version for contrasharp to compare against; video resolution and properties must be the same (different bit depth is OK). Using this option defaults contrasharp to True.

Globals int (0-3, default 0)

With this parameter you can create or load pre-processed motion vectors, to save doing the work for multiple SMDegrain calls.
  • 0: Ignore globals, just process
  • 1: Read globals and Process
  • 2: Process and output globals
  • 3: Output globals only, don't process
Some parameters MUST MATCH between output and input stages: pel, subpixel, chroma, and vpad/hpad cannot change. When reading (Globals=1) only some parameters work: tr, thSAD, plane, limit, limitc, contrasharp, CClip, interlaced and the lsb parameters. Others are ignored.
Global names that can be reused are: Super, bv1, fv1, bv2, fv2, bv3, fv3, bv4, fv4, bv6, fv6, vmulti.
SMDegrain(tr=3,thSAD=400,globals=3)    # Outputs vectors
SMDegrain(tr=3,thSAD=400,globals=1)    # You can use a lower "tr" or "thSAD" if you want
or
SMDegrain(tr=3,thSAD=400,globals=3)    # Outputs vectors
Super = MSuper(levels=1)               # Add this line just before if you have some processing between Globals Output and Input.
MDegrain3(Super, bv1, fv1, bv2, fv2, bv3, fv3, thSAD=400)

Show bool = False
Show str ("Speed", "Memory", "Quality", default -)

This will show the prefiltered clip to be used for the motion search to the left(<--), and the used parameters list to the right (-->)
If the parameters panel is broken i.e. overlapping lines, hidden lines, etc, most likely your settings are wrong, (e.g. lsb_in=true when input is 8bit) so it will also work well as a debug function. If you set Show to a string as indicated above, related parameters will be highlighted to guide you on correctly tweaking the function. This is loosely based, so it doesn't exclude you from reading carefully every parameter explanation.
Even when you are not using any prefiltering, the clip to be used for the motion search where you obtain the motion vectors, will be converted from TV levels to PC levels, the only exception being when using Globals=1 (Read) in which case the "prefiltered" clip will be exactly the same as input clip (that is no luma conversion, although constrained to 8 bit). Additionally you can tweak the dark expansion with Str and Amp parameters and check the effects in the left panel, but be aware to change your viewing conditions as it is in PC levels.
The left panel preserves its properties so you can crop out the right panel and use it as a prefilter clip of any MSuper(). Therefore if you are not processing chroma (chroma=false) the prefiltered clip will be green, don't panic, this is correct, this happens when the U and V planes are unset. In this regard for previewing tasks with prefilterings -- or just the Str and Amp effect -- set chroma to true temporally or follow with GreyScale(). For YUY2 sources set Planar2Interleaved() after cropping for previewing.

Final Notes

If there is an important parameter not implemented, you have any issue or found a bug, please don't hesitate and ask in its VideoHelp thread.

Changelog

Version Date Changes
3.1.2d 2015-07-21

Fixed regression where external prefilters wouldn't be parsed for luma expansion

3.1.1d 2015-07-16

Workaround to force KNLMeansCL use discrete video card (now required)

3.1d 2015-07-14

New prefilter mode 4 for grainy sources. GPU based spatio-temporal KNLmeans
Added dither output mode "Random Dither".
Added "slices" option from Dither
Added soft=-2 (automatic) to internal lsfmod
Added assert for chroma denoise when luma only motion vectors (mvtools bug)
Improved lsb_in code (now using sub/add method)
Removed vpad/hpad=0 optimization preset for HD
Fixed prefilter=3 code for lsb_in YUY2
More fixes to Show Panel...
Updated and fixed documentation (notes on YUY2 support)

3.0d 2015-03-27

Adjusted SD<>HD discretion
Added mfilter (Motion Filter) new feature
subpixel=3 (nnedi3); removed qual=2 due to possible blending bug (quote by cretindesalpes), this also boosts speed
Lowered the defaults for less aggressive denoise (still somewhat high)
Fixed chroma not showing in debug (show) mode when lsb=true and prefilter=3 were paired
Fixed long lasting issues in Show Panel for certain not mod height resolutions
Now prefilter=0 is minblur(0), lighter denoising than prefilter=1, default is now -1 (off)
Documentation update (plugin updates, notes, links, examples, etc)

2.2d 2013-03-05

Removed one residual variable in Contrasharpening function
Fixed a regression at v2.0 for Interlaced YUY2 sources by changing wrong variable ifC to if0, and...
...adding a missing weave() to the last MergeChroma() call
Dropped Dither support. (Will still work/not work as before, but lack of official support renders it to a YMMV condition)

2.1d 2012-09-09

Fixed Refinemotion Globals Input labels
Fixed ContrasharpeningHD Vectors for Interlaced HD sources
Added ability to import Global Vectors even when "tr" is lower than parent instance "tr" (credit to cretindesalpes)
Expanded support for Interlaced Denoising "tr" up to 64 (credit to cretindesalpes)
Cosmetics

2.0d 2012-06-07

Fixed and optimized chroma handling for lsb_in, contrasharpening and YUY2 content v.1.95
Enhanced Chroma bypass on the sharpening stage
Merged ContraHD() internally for Contrasharpening in HD sources
Dropped QTGMC support on import/export motion vectors (small value for increased confusion)
Fixed Median code for planar inputs in MinBlur() (needs RemoveGrainHD, dropped medianblur requirement)
Defaulted truemotion to false for HD inputs
Code Optimization and Clean up
Others

1.9d 2012-03-23

Added truemotion parameter (default=true), change it to false (as in MCTemporalDenoise()), so low frequency detail won't be lost (walls...), although it could leave more noise on high frequency details
Added thSADC, and thSCD1/thSCD2 parameters for finer control
Tweaked prefilter=3 dfttest sigmas for better low frequency detail protection
Detached explanation and converted to html. Updated and extended the contents as well
Fine tuned and robustized the Show Panel
Optimized and organized code, more precisely the contrasharpening part
Fixed a few ternary checks for when Globals=3
Others

1.8d 2012-01-18

Added automatic dark protection for prefilter=3 (dfttest performs badly in darks) v1.71d and extended its dark protection v1.8
Fixed chroma variable when chroma=false, from 2 (copy chroma) to 1 (discard chroma) v1.71d
Explanation and cosmetics v1.71d
Added acknowledgments and updated explanation
Added brackets to all functions (it has been reported to cause threading problems under certain circumstances) (http://forum.doom9.org/showthread.php?p=1515886#post1515886)
Reworked and fixed the parameters panel. Now you have a color guide to have an idea on what to tweak depending on selected mode in Show. For strings: "Speed", "Memory" and "Quality"
Optimized lsb_in for HD resolutions which was causing memory hogs
Fixed contrasharpening for YUY2 sources when lsb=true
Fixed some inconsistencies for YUY2 sources when prefilter=3

1.7d 2012-01-11

Fixed and extended introduction explanation v.1.61d
Fixed some issues for Globals=1 (Read) in relation to lsb_in and luma expansion auto-prefilter v.1.61d
Added mild gauss blur prefilter option as prefilter=1. Consequent modes are displaced v.1.61d
Changed prefilter 1 and 2 to Minblur (Gauss/Median combination) v.1.63d
Updated MinBlur function v.1.62d and v.1.66
Code tidied up v.1.62d
Updated luma expansion, now you can enhance darks (with 'Str' and 'Amp') in the same step as the TV->PC conversion stage, thus +optimized, +quality. v.1.63d by cretindesalpes (http://forum.doom9.org/showthread.php?p=1548318#post1548318)
Removed pre_custom. Now use prefilter to load a prefiltered clip, as well as modes 0~3
Added Show parameter. Now you can see the used and default parameters along the prefilter clip as well
Fixed one note related to prefilter clip input for interlaced content

1.6d 2011-12-24 (first open release)

Fixed and extended introduction explanation
Fixed Ditherpost for interlaced sources
Fixed a broken reference for reading MRecalculate globals when tr>3
Fixed a Globals=1 MSuper automatization
Fixed a plane processing bypass when chroma=false
Added LSFmod as optional contrasharpening (slower, but biased contrasharpening and probably better depending on source)
Added default luma expansion auto-prefilter for motion search (16% more values)
Added YUY2 support
Added the 'mode' parameter of Ditherpost()
Added support for interlaced temporal radius up to 6

1.5d 2011-10-14

Changed "srchSuper" Global variable to "QTGMC_srchSuper", compatible with QTGMC. Anyhow you may probably want to create a new super clip. Test it out! v.1.41d
Introduction spelling and presentation v.1.42d
Added lsb and lsb_in for prefilter=2 (dfttest) v.1.43d & v.1.44d
Some better definitions for the settings help v.1.45d
pelclip is now subpixel = 3 ('sharp' parameter before) v.1.45d
Other minor tweaks v.1.45d
Fixed an important issue when using prefilter with subpixel=3 ('pelclip' parameter before)
Optimizations in Ditherpost for chroma
Changed rfilter (hierarchical levels smoothing/scaling) from default 2 to 4. Better results in my judge
Some more little tweaks in code and introduction

1.4d 2011-09-16

Added pelclip option for top quality subpixel interpolation when pel > 1
Changed QTGMCV parameter to Globals, and added a bunch of new features like vectors output from SMDegrain()
Big introduction and code optimization tweaks

1.3d 2011-09-14 Fixed an important issue on the Interlaced parameter and improved overall handling (v.1.21d & v.1.3d)
1.2d 2011-09-13

Added Interlaced parameter, for processing interlaced sources
Some introduction and code optimization tweaks (v.1.12d & v.1.2d)

1.1d 2011-09-12

Implemented MDegrainN for tr > 3, from the MVTools2 mod of Dither
Minor introduction and code optimization tweaks

1.0d 2011-09-09

Added CClip parameter. Reference an earlier stage of your processing chain as your sharp version for the contrasharpening

0.9d 2011-09-09

Added QTGMCV parameter, for reusing vectors from QTGMC bob deinterlacer

0.8d 2011-09-05

Fixed a few things related to the lsb_in option
Minor introduction and code optimization tweaks

0.7d 2011-09-05

Implemented "fake" lsb_in option. Output will have slightly more quality (if any), and will compress better. (Experimental)
Fixed a not passed argument in the hpad, vpad parameters

0.6d 2011-09-04

Minor introduction and code optimization tweaks

0.5d 2011-07-19

Added dfttest option for preblur (now prefilter) option. Slower but better due to its internal deblock+denoise operation, plus sharper results
Added pre_custom option for the prefilter process, define here a denoised clip as your prefiltered version
Updated the introduction help

0.4d 2011-06-03

Added preblur option for slight vector blurring where motionmatch is bad (http://forum.doom9.org/showthread.php?t=161594)
Added RefineMotion parameter for better motion vectors. Based off Killer() (http://forum.doom9.org/showthread.php?p=1266572#post1266572)
Added parameters "lsb" and "lsb_out", for the MVTools2 mod version of cretindesalpes' Dither (http://forum.doom9.org/showthread.php?p=1386559#post1386559)
Other minor aesthetics and performance adjustments

0.3d 2011-03-04

First Mod version
Fixed plane (for MDegrain) and added chroma (for MAnalyse) parameters

0.2 2010-01-24

Added introductory section
Added more parameters

0.1

Basic working version
Not released

Personal tools