Grid

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
(link to correct downloads and requirements)
Line 1: Line 1:
 
+
{{FilterCat4|External_filters|Plugins|Plugins_x64|<!-- category -->TODO}}
{{FilterCat4|External_filters|Plugins|<!-- category -->TODO|<!-- category -->TODO}}
+
 
+
 
{{Filter3
 
{{Filter3
|1=<!-- author --> [http://www.avisynth.nl/users/vcmohan/ V.C.Mohan]
+
|1=[http://www.avisynth.nl/users/vcmohan/ V.C.Mohan]
|2=<!-- version --> 21 Mar 2017
+
|2=21 Mar 2017
|3=<!-- URL --> [http://www.avisynth.nl/users/vcmohan/Grid/Grid64.7z Download]
+
|3=
|4=<!-- category --> External filters
+
AviSynth 2.6 [x86]: [http://www.avisynth.nl/users/vcmohan/Grid/Grid_2_6.zip Grid_2_6.zip]
|5=<!-- license --> [https://www.gnu.org/licenses/gpl-2.0.txt GPLv2]
+
-----------
|6=<!-- discussion URL --> [https://forum.doom9.org/showthread.php?p=617127#post617127 Announced Grid plugin]}}
+
AviSynth+ [x86]: [http://www.avisynth.nl/users/vcmohan/Grid/Grid32.7z Grid32.7z]<br>
 +
AviSynth+ [x64]: [http://www.avisynth.nl/users/vcmohan/Grid/Grid64.7z Grid64.7z]
 +
|4=External filters
 +
|5=[https://www.gnu.org/licenses/gpl-2.0.txt GPLv2]
 +
|6=[https://forum.doom9.org/showthread.php?p=617127#post617127 Doom9 ]}}
  
 
== Description ==
 
== Description ==
Line 16: Line 18:
 
<br>
 
<br>
 
== Requirements ==
 
== Requirements ==
* AviSynth+ r2347 or later
+
* [x86] [[AviSynth+]] or [https://sourceforge.net/projects/avisynth2/ AviSynth 2.6]
 +
* [x64] [[AviSynth+]]
 +
* Supported color formats: [[RGB24]], [[RGB32]], [[YUY2]], [[Y8]], [[YV12]], [[YV16]], [[YV24]]
  
 
<br>
 
<br>

Revision as of 21:37, 27 May 2020

Abstract
Author V.C.Mohan
Version 21 Mar 2017
Download AviSynth 2.6 [x86]: Grid_2_6.zip

AviSynth+ [x86]: Grid32.7z
AviSynth+ [x64]: Grid64.7z

Category External filters
License GPLv2
Discussion Doom9

Contents

Description

Grid lines are drawn as dotted lines, while those specified as bold are drawn as dashed lines and very bold ones are drawn as full lines. Full Description


Requirements


Syntax and Parameters

Grid (clip, int "sf", int "ef", int "lineint", int "bold", int "vbold", int "color", int "bcolor", int "vbcolor", bool "grid", bool "axis")


clip   =
Input clip


int  sf = 0
Grid display to start from frame number


int  ef = last frame of clip
Grid display to end on frame number


int  lineint = 10
Grid line (dotted) interval in pixels


int  bold = 5


int  vbold = 2


int  color = 0
Color of grid line


int  bcolor = color
Color of bold line


int  vbcolor = color
Color of very bold line


bool  grid = true
Whether grid lines to be displayed


bool  axis = false
Whether axis lines to be displayed


Examples

Grid(last,24,200,25,4,5,$ff0000,$7f0000,$5f0000,true,false)
For grid lines and very bold lines only (vbold=1 ensures it)
Grid(last,24,200,10,10,1)
Grid(last,24,200,color=255)
Fbold lines will not be displayed as large value ensures out of frame
Grid(last,24,200,vbold=7000)
Grid(last,24,200,grid=false,axis=true)



Back to External Filters

Personal tools