EraseBorders

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
(EraseBorders v0001)
 

Latest revision as of 21:43, 26 July 2021

Abstract
Author putin
Version v0001
Download eraseborders0001.zip
Category Borders and Cropping
License Open source
Discussion

Contents

[edit] Description

EraseBorders copies the pixels inside the specified width edge. Works similar to BorderControl's smear.

[edit] Requirements


*** vcredist_x86.exe required for EraseBorders-x86
*** vcredist_x64.exe required for EraseBorders-x64


[edit] Syntax and Parameters

EraseBorders (clip, int "left", int "top", int "right", int "bottom")


clip   =
Input clip; only YUY2 and YV12 supported.


int  left = 0
int  top = 0
int  right = 0
int  bottom = 0
Number of pixels to fill on each side.


[edit] Examples

AviSource("Blah.avi")
EraseBorders(left=2, top=4, right=2, bottom=0)

Here EraseBorder copies the pixels of the second column to the first column on the left, and it copies the pixels of the fourth row to rows 0-3 on the top.

What it does is almost the same as the smear in BorderControl.dll.

[edit] Changelog

Version       Date            Changes
0001 2014/09/12 - First release


[edit] Archived Downloads

Version Download Mirror
0001 eraseborders0001.zip


[edit] External Links




Back to External Filters