SSIM
From Avisynth wiki
(Difference between revisions)
(add archive links) |
(→Syntax and Parameters: add info about lumimask=2) |
||
Line 34: | Line 34: | ||
<br> | <br> | ||
::{{Par2|lumimask|int|1}} | ::{{Par2|lumimask|int|1}} | ||
− | :::This filter is designed to compute an SSIM value by | + | :::This filter is designed to compute an SSIM value by three methods, the original one, and a "enhanced" one that weight these results by lumimasking. |
− | :::0 : | + | :::0 : lumamasking disabled |
− | :::1 : | + | :::1 : lumamasking enabled (original method) |
+ | :::2 : lumamasking enabled (new method as proposed by On2Tech) - see discussion [https://forum.doom9.org/showthread.php?t=92532 here] and [https://forum.doom9.org/showthread.php?p=626354#post626354 here] for more info. | ||
<br> | <br> | ||
::{{Par2|scaled|int|1}} | ::{{Par2|scaled|int|1}} | ||
Line 43: | Line 44: | ||
:::1 : true | :::1 : true | ||
<br> | <br> | ||
+ | |||
==Examples== | ==Examples== | ||
[[TODO]] | [[TODO]] |
Revision as of 07:36, 20 March 2020
Abstract | |
---|---|
Author | Lefungus, |
Version | v0.25.1.0 |
Download | SSIM0.25.1.0.rar |
Category | Debug filter |
License | |
Discussion | Doom9 Thread |
Contents |
Description
A filter that compute an objective video quality metric between two videos. Based on SSIM work from Zhou Wang.
Requirements
Syntax and Parameters
- SSIM (clip, clip, string, string, int "lumimask", int "scaled")
- SSIM_FRAME (clip, clip)
- SSIM_Y_FRAME (clip, clip)
- SSIM_U_FRAME (clip, clip)
- SSIM_V_FRAME (clip, clip)
- clip =
- clip1 and clip2 are the reference clip and the compressed clip.
- clip =
- string = "results.csv"
- The file where obtained SSIM values will be written (this can be easily read in excel or notepad for those unfamiliar with the comma separated variables format)
- string = "results.csv"
- string = "globalSSIM.txt"
- The file where global SSIM values will be written.
- string = "globalSSIM.txt"
- int lumimask = 1
- This filter is designed to compute an SSIM value by three methods, the original one, and a "enhanced" one that weight these results by lumimasking.
- 0 : lumamasking disabled
- 1 : lumamasking enabled (original method)
- 2 : lumamasking enabled (new method as proposed by On2Tech) - see discussion here and here for more info.
- int lumimask = 1
- int scaled = 1
- The global score is scaled from 0 to 100 instead of 0 to 1. Set to false if you prefer it non-scaled.
- 0 : false
- 1 : true
- int scaled = 1
Examples
Changelog
Version Date Changes
v0.25.1.0 ????/??/?? - Modifications by On2Tech, see discussion - add "SSIM_FRAME", "SSIM_Y_FRAME", "SSIM_U_FRAME", "SSIM_V_FRAME" functions v0.24a 2005/04/05 - change "lumimask" and "scaled" from bool to integer - add "lumimask=2" mode v0.24 2004/06/06 - various bugfixes v0.23 - minor memory leak removed v0.22 - added "scaled" parameter v0.21 - flag for globalSSIM added - some checks added v0.20 2003/09/10 - Updated. It is somewhat faster, and include lumimasking.
Archived Downloads
Version | Download | Mirror |
---|---|---|
v0.25.1.0 | SSIM0.25.1.0.rar | SSIM0.25.1.0.rar |
v0.24a | ssim-0.24a.zip | ssim-0.24a.zip |
v0.24 | Binary: SSIM-0.24.rar /// Source: SSIMSrc-0.24.rar | |
v0.23 | Binary: SSIM-0.23.rar /// Source: SSIMSrc-0.23.rar |
External Links
Back to External Filters ←