EdgeFixer
From Avisynth wiki
(Difference between revisions)
(add bit depth support) |
m (typo) |
||
(6 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | {{FilterCat6|External_filters|Plugins|Plugins_x64|Adjustment_filters|Borders and Cropping|Deep_color_tools}} |
{{Filter3 | {{Filter3 | ||
− | |[https://github.com/sekrit-twc sekrit-twc] | + | |1=r[https://github.com/sekrit-twc sekrit-twc] |
− | | | + | |2=r2 |
− | |3=[ | + | |3=[https://github.com/sekrit-twc/EdgeFixer/releases EdgeFixer_r2.7z] |
|4=Borders and Cropping | |4=Borders and Cropping | ||
|5= | |5= | ||
Line 43: | Line 43: | ||
== Examples == | == Examples == | ||
[[AviSource]]("Blah.avi") | [[AviSource]]("Blah.avi") | ||
− | + | ContinuityFixer (left=2, top=4, right=0, bottom=2, radius=0) | |
<br> | <br> | ||
+ | |||
+ | [[AviSource]]("Blah.avi") | ||
+ | ReferenceFixer ([[FastBlur]](0.8125, 0, iterations = 1, gamma = false), left=10) | ||
+ | <br> | ||
+ | |||
== Changelog == | == Changelog == | ||
Version Date Changes<br> | Version Date Changes<br> | ||
− | + | r2 2020/08/22 - See [https://github.com/sekrit-twc/EdgeFixer/commits/master commits] | |
r1 2018/01/13 - first release | r1 2018/01/13 - first release | ||
<br> | <br> | ||
Line 57: | Line 62: | ||
!!width="150px"| Mirror | !!width="150px"| Mirror | ||
|- | |- | ||
− | ! | + | ! |
| | | | ||
| | | | ||
Line 63: | Line 68: | ||
<br> | <br> | ||
== External Links == | == External Links == | ||
− | *[https://github.com/sekrit-twc/EdgeFixer GitHub] - Source code | + | *[https://github.com/sekrit-twc/EdgeFixer GitHub] - Source code repository |
<br> | <br> | ||
<br> | <br> | ||
----------------------------------------------- | ----------------------------------------------- | ||
'''Back to [[External_filters#Borders_and_Cropping| External Filters]] ←''' | '''Back to [[External_filters#Borders_and_Cropping| External Filters]] ←''' |
Latest revision as of 08:58, 26 July 2021
Abstract | |
---|---|
Author | rsekrit-twc |
Version | r2 |
Download | EdgeFixer_r2.7z |
Category | Borders and Cropping |
License | |
Discussion |
Contents |
[edit] Description
EdgeFixer repairs bright and dark line artifacts near the border of an image. When an image is resampled with a negative-lobe kernel, such as Bicubic or Lanczos, a series of bright and dark lines may appear around the image borders. These lines need not be cropped, as they contain spatial information that can be recovered. EdgeFixer uses least squares regression to correct the offending lines based on a reference line. ContinuityFixer uses the adjacent line as the reference, whereas ReferenceFixer uses an external reference image.
See Github homepage for examples.
[edit] Requirements
[edit] Syntax and Parameters
- ContinuityFixer (clip clip, int "left", int "top", int "right", int "bottom", int "radius")
- ReferenceFixerFixer (clip clip, clip ref, int "left", int "top", int "right", int "bottom", int "radius")
- clip =
- Input clip.
- clip =
- clip =
- Reference clip, only applicable to ReferenceFixer.
- clip =
- int left = 0
- int top = 0
- int right = 0
- int bottom = 0
- The number of lines to filter along each edge.
- int left = 0
- int radius = 0
- Limit the window used for the least squares regression, useful in the presence of overlaid content.
- int radius = 0
[edit] Examples
AviSource("Blah.avi") ContinuityFixer (left=2, top=4, right=0, bottom=2, radius=0)
AviSource("Blah.avi") ReferenceFixer (FastBlur(0.8125, 0, iterations = 1, gamma = false), left=10)
[edit] Changelog
Version Date Changes
r2 2020/08/22 - See commits r1 2018/01/13 - first release
[edit] Archived Downloads
Version | Download | Mirror |
---|---|---|
[edit] External Links
- GitHub - Source code repository
Back to External Filters ←