-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3210e8a
commit 44c4815
Showing
1 changed file
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
EdgeFixer | ||
========= | ||
|
||
fix edges | ||
ContinuityFixer(clip clip, int "left", int "right", int "top", int "bottom", int "radius") | ||
ReferenceFixer(clip clip, clip ref, int "left", int "right", int "top", int "bototm", int "radius") | ||
|
||
edgefixer.Continiuty(clip clip, int "left", int "right", int "top", int "bottom", int "radius") | ||
edgefixer.Reference(clip clip, clip ref, int "left", int "right", int "top", int "bottom", int "radius") | ||
|
||
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. | ||
|
||
* **left**, **right**, **top**, **bottom** - the number of lines to filter along each edge | ||
* **radius** - limit the window used for the least squares regression, useful in the presence of overlaid content |