EquLines
From Avisynth wiki
(Difference between revisions)
Raffriff42 (Talk | contribs) (redirect for convenient searching) |
(EquLines: add documentation) |
||
Line 1: | Line 1: | ||
− | + | {{FilterCat4|External_filters|Plugins|Restoration_filters|Luma_Equalization}} | |
− | {{ | + | {{Filter3 |
+ | |1={{Author/Fizick}} | ||
+ | |2=v0.3 | ||
+ | |3=[http://avisynth.org.ru/equlines/equlines03.zip equlines03.zip] | ||
+ | |4=Luma Equalization | ||
+ | |5=[http://www.gnu.org/licenses/gpl-2.0.txt GPLv2] | ||
+ | |6=}} | ||
+ | |||
+ | == Description == | ||
+ | This filter equalizes total luminosity in pairs of even and odd lines.<br> | ||
+ | The filter preserves all details (no smoothing or deinterlacing). | ||
+ | |||
+ | |||
+ | '''Application:'''<br> | ||
+ | This simple filter is useful for removing of inter-line difference from captured (telecined) 8mm films (kino, movie).<br> | ||
+ | The well-known Antiflicker filter (by Donald Graft) does a good job in frames luminosity equalizing, but may to leave some inter-field differences, which are revealed after restoring to progressive frames sequence (with IVTC filters).<br> | ||
+ | The [[EquLines]] filter must applied after IVTC filters but before any denoising or other processing filters such as resizing. | ||
+ | |||
+ | |||
+ | *Official documentation: http://avisynth.org.ru/equlines/equlines.html | ||
+ | <br> | ||
+ | |||
+ | == Requirements == | ||
+ | * [x86]: [[AviSynth+]] or [https://sourceforge.net/projects/avisynth2/ AviSynth 2.5.8 or greater] | ||
+ | * [x64]: [[AviSynth+]] | ||
+ | * Supported color formats: [[YUY2]], [[YV12]] | ||
+ | <br> | ||
+ | |||
+ | == [[Script variables|Syntax and Parameters]] == | ||
+ | ::{{Template:FuncDef|EquLines (clip, int "deltamax")}} | ||
+ | <br> | ||
+ | ::{{Par2| |clip| }} | ||
+ | :::Input clip | ||
+ | <br> | ||
+ | ::{{Par2|deltamax|intt|255}} | ||
+ | :::<code>deltamax</code> is the maximum luminosity change (default=255) | ||
+ | <br> | ||
+ | |||
+ | == Examples == | ||
+ | EquLines with default settings: | ||
+ | [[AviSource]]("blah.avi") | ||
+ | EquLines(deltamax=255) | ||
+ | |||
+ | <br> | ||
+ | == Changelog == | ||
+ | Version Date Changes<br> | ||
+ | v0.3 2006/04/24 - Lastest release | ||
+ | - Converted to a standard plugin (no longer a C-plugin)<br> | ||
+ | v0.2 2003/11/29 - v0.2 is a C-plugin | ||
+ | <br> | ||
+ | == Archived Downloads == | ||
+ | {| class="wikitable" border="1"; width="400px" | ||
+ | |- | ||
+ | !!width="100px"| Version | ||
+ | !!width="150px"| Download | ||
+ | !!width="150px"| Mirror | ||
+ | |- | ||
+ | !v0.3 | ||
+ | |[http://avisynth.org.ru/equlines/equlines03.zip equlines03.zip] | ||
+ | |[https://web.archive.org/web/20170620102449if_/http://avisynth.org.ru/equlines/equlines03.zip equlines03.zip] | ||
+ | |} | ||
+ | <br> | ||
+ | == External Links == | ||
+ | <br> | ||
+ | <br> | ||
+ | ----------------------------------------------- | ||
+ | '''Back to [[External_filters#Luma_Equalization|External Filters]] ←''' |
Revision as of 05:12, 4 July 2020
Abstract | |
---|---|
Author | Fizick |
Version | v0.3 |
Download | equlines03.zip |
Category | Luma Equalization |
License | GPLv2 |
Discussion |
Contents |
Description
This filter equalizes total luminosity in pairs of even and odd lines.
The filter preserves all details (no smoothing or deinterlacing).
Application:
This simple filter is useful for removing of inter-line difference from captured (telecined) 8mm films (kino, movie).
The well-known Antiflicker filter (by Donald Graft) does a good job in frames luminosity equalizing, but may to leave some inter-field differences, which are revealed after restoring to progressive frames sequence (with IVTC filters).
The EquLines filter must applied after IVTC filters but before any denoising or other processing filters such as resizing.
- Official documentation: http://avisynth.org.ru/equlines/equlines.html
Requirements
- [x86]: AviSynth+ or AviSynth 2.5.8 or greater
- [x64]: AviSynth+
- Supported color formats: YUY2, YV12
Syntax and Parameters
- EquLines (clip, int "deltamax")
- clip =
- Input clip
- clip =
- intt deltamax = 255
deltamax
is the maximum luminosity change (default=255)
- intt deltamax = 255
Examples
EquLines with default settings:
AviSource("blah.avi") EquLines(deltamax=255)
Changelog
Version Date Changes
v0.3 2006/04/24 - Lastest release - Converted to a standard plugin (no longer a C-plugin)
v0.2 2003/11/29 - v0.2 is a C-plugin
Archived Downloads
Version | Download | Mirror |
---|---|---|
v0.3 | equlines03.zip | equlines03.zip |
External Links
Back to External Filters ←