EdgeFixer

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (add x64 category)
m (typo)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{FilterCat5|External_filters|Plugins|Plugins_x64|Adjustment_filters|Borders and Cropping}}
+
{{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]
|25 Mar 2019
+
|2=r2
|3=[http://s000.tinyupload.com/index.php?file_id=15734691908025476289 EdgeFixer.7z]
+
|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")
  EdgeFixer(left=5, top=7, right=2, bottom=0, radius=10) #change radius to equal or a bit higher than the highest value of left/top/right/bottom
+
  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>
  25 Mar 2019  2019/03/25     - Compiled with Microsoft Visual Studio C++ 2017.
+
  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
 
|-
 
|-
!r1
+
!
 
|
 
|
 
|
 
|
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]] &larr;'''
 
'''Back to [[External_filters#Borders_and_Cropping| External Filters]] &larr;'''

Latest revision as of 09: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   =
Reference clip, only applicable to ReferenceFixer.
int  left = 0
int  top = 0
int  right = 0
int  bottom = 0
The number of lines to filter along each edge.
int  radius = 0
Limit the window used for the least squares regression, useful in the presence of overlaid content.


[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

Personal tools