Compare

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (add example image)
m (formatting, links, phrasing touch-up)
Line 1: Line 1:
<div style="max-width:62em" >
+
__NOTOC__
 +
<div style="max-width:60em" >
 +
Compares two clips (the "filtered" clip and the "original" clip) and returns the following data for each frame:
 +
:;Mean Absolute Deviation <sup>[[wikipedia:Statistical_dispersion|1]]</sup>
 +
::''(minimum, average, maximum)''
 +
:;Mean Deviation
 +
::''(minimum, average, maximum)''
 +
:;Max. Positive Deviation
 +
:;Max. Negative Deviation
 +
:;Peak Signal-to-Noise Ratio (PSNR) <sup>[[PSNR|2]]</sup>
 +
::''(minimum, average, maximum)''
 +
:;PSNR
 +
::''(cumulative)''
 +
 
 +
These data are displayed on screen by default (see [[#Examples|example image]]), or can optionally be written to a {{FuncArg|logfile}}.
 +
 
 +
By default a ''PSNR graph'' is displayed; this graph shows overall PSNR visually as a timeline that grows left-to-right along the bottom of the screen as the clip plays.
 +
 
 +
=== Syntax and Parameters ===
 
{{FuncDef
 
{{FuncDef
|Compare(clip ''clip_filtered'', clip ''clip_original'', string ''channels'', string ''logfile'', bool ''show_graph'')}}\
+
|Compare(clip ''clip_filtered'', clip ''clip_original''<br>
 +
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  [, string ''channels'', string ''logfile'', bool ''show_graph'' ] )
 +
}}
  
 
{{Par2|clip_filtered, clip_original|clip|}}
 
{{Par2|clip_filtered, clip_original|clip|}}
:This filter compares the original clip and its filtered version. The filtered version will be returned with the results of the comparison displayed on screen (unless the {{FuncArg|logfile}} option is used). For each frame, the ''Mean Absolute Difference'', ''Mean Difference'' and ''Peak Signal-to-Noise Ratio'' ([[PSNR]]) is given, as well as the ''min'' (minimum), ''avg'' (average), ''max'' (maximum) and ''overall'' PSNR up to that frame (calculated frame-wise).  
+
:The "filtered" clip and the "original" clip. Size and color formats must match.
 +
:Color format may be [[RGB24]], [[RGB32]], [[YUY2]] or [[YV12]].
 +
:The "filtered" clip is returned.
  
 
{{Par2|channels|string|""}}
 
{{Par2|channels|string|""}}
:Set the color channels to be compared with a combination of ''R'',''G'',''B'' [,''A''] or ''Y'',''U'',''V'', depending on the source color format. If it is empty (default), it means either "[[YUV]]" when the input clips are YCbCr or "[[RGB]]" when in the input clips are RGB.
+
:Set the color channels to be compared with a combination of ''R'',''G'',''B'' [,''A''] or ''Y'',''U'',''V'', depending on the source color format.  
 +
:By default, all channels are compared.  
  
 
{{Par2|show_graph|bool|true}}
 
{{Par2|show_graph|bool|true}}
:If true, (the default) then Marc's{{Who|Talk:Compare}} PSNR graph is also drawn on it (see [[#Examples|example image]]).  
+
:If true, (the default) the PSNR graph is drawn on the screen.  
  
 
{{Par2|logfile|string|""}}
 
{{Par2|logfile|string|""}}
:If specified, the results will be written to a file by this name and not drawn on the clip. It is much faster if you need to compare a lot of frames.
+
:If specified, the results will be written to a file, and not drawn on the clip.  
 +
:Using a {{FuncArg|logfile}} is much faster if you need to compare a lot of frames.
  
=====Examples=====
+
=== Examples ===
* displays differences on screen:
+
* Basic usage &ndash; display differences on screen:
 
<div {{BoxWidthIndent|36|2}} >
 
<div {{BoxWidthIndent|36|2}} >
 
  [[FFmpegSource|FFmpegSource2]]("[http://www.sintel.org/ sintel].mp4")
 
  [[FFmpegSource|FFmpegSource2]]("[http://www.sintel.org/ sintel].mp4")
 
  A=[[BicubicResize]](640, 272)
 
  A=[[BicubicResize]](640, 272)
  B=A.[[Sharpen]](1.0) ## (the filter under test)
+
  B=A.[[Sharpen]](1.0) ## Sharpen is our ''filter under test''
  return Compare(A, B)
+
  return Compare(B, A)
 
</div>
 
</div>
 
:[[File:Compare-Sintel-9507.png]]
 
:[[File:Compare-Sintel-9507.png]]
  
* for creating a log file:
+
* Create a log file:
 
<div {{BoxWidthIndent|36|2}} >
 
<div {{BoxWidthIndent|36|2}} >
 
  Compare(clip1, clip2, "", "compare.log")
 
  Compare(clip1, clip2, "", "compare.log")
 
</div>
 
</div>
  
* will only compare chroma channels of YUY2 clips:
+
* Compare chroma channels only:
 
<div {{BoxWidthIndent|36|2}} >
 
<div {{BoxWidthIndent|36|2}} >
 
  Compare(clip1, clip2, "UV")
 
  Compare(clip1, clip2, "UV")
Line 36: Line 60:
 
</div>
 
</div>
  
=====Changes=====
+
=== External Links ===
 +
*[http://forum.doom9.org/showthread.php?t=29538 discussion]
 +
 
 +
=== Changes ===
 
{| border="1"
 
{| border="1"
 
|-  
 
|-  

Revision as of 08:20, 4 March 2016

Compares two clips (the "filtered" clip and the "original" clip) and returns the following data for each frame:

Mean Absolute Deviation 1
(minimum, average, maximum)
Mean Deviation
(minimum, average, maximum)
Max. Positive Deviation
Max. Negative Deviation
Peak Signal-to-Noise Ratio (PSNR) 2
(minimum, average, maximum)
PSNR
(cumulative)

These data are displayed on screen by default (see example image), or can optionally be written to a logfile.

By default a PSNR graph is displayed; this graph shows overall PSNR visually as a timeline that grows left-to-right along the bottom of the screen as the clip plays.

Syntax and Parameters

Compare(clip clip_filtered, clip clip_original
      [, string channels, string logfile, bool show_graph ] )

clip  clip_filtered, clip_original =

The "filtered" clip and the "original" clip. Size and color formats must match.
Color format may be RGB24, RGB32, YUY2 or YV12.
The "filtered" clip is returned.

string  channels = ""

Set the color channels to be compared with a combination of R,G,B [,A] or Y,U,V, depending on the source color format.
By default, all channels are compared.

bool  show_graph = true

If true, (the default) the PSNR graph is drawn on the screen.

string  logfile = ""

If specified, the results will be written to a file, and not drawn on the clip.
Using a logfile is much faster if you need to compare a lot of frames.

Examples

  • Basic usage – display differences on screen:
FFmpegSource2("sintel.mp4")
A=BicubicResize(640, 272)
B=A.Sharpen(1.0) ## Sharpen is our filter under test
return Compare(B, A)
Compare-Sintel-9507.png
  • Create a log file:
Compare(clip1, clip2, "", "compare.log")
  • Compare chroma channels only:
Compare(clip1, clip2, "UV")

External Links

Changes

v2.58 Added YV12 support.
Personal tools