Can someone explain me the syntax of EEDI3? how do i use this to remove aliasing?
+ Reply to Thread
Results 1 to 27 of 27
-
-
There are many other antialiasing functions you can use.
But you can use it like this for AA
e.g
Code:src=whateversource() w1=src.width h1=src.height src turnleft() eedi3() turnright() eedi3() spline36resize(w1,h1)
Last edited by poisondeathray; 17th Apr 2013 at 00:25.
-
-
LoadPlugin("D:\Program Files (x86)\AviSynth 2.5\plugins\eedi3.dll")
MPEG2Source("D:\Users\x265\Desktop\VTS_01_1.d2v", cpu=0)
trim(363, 43365)
AnimeIVTC(mode=4, omode=2, pass=2, aa=0)
Crop(4, 2, -4, -0)
tweak(sat=1.04)
src=MPEG2Source("D:\Users\x265\Desktop\VTS_01_1.d2 v", cpu=0)
w1=src.width
h1=src.height
src()
turnleft()
eedi3()
turnright
eedi3()
spline36resize(w1,h1) -
Try this
Code:LoadPlugin("D:\Program Files (x86)\AviSynth 2.5\plugins\eedi3.dll") MPEG2Source("D:\Users\x265\Desktop\VTS_01_1.d2v", cpu=0) trim(363, 43365) AnimeIVTC(mode=4, omode=2, pass=2, aa=0) Crop(4, 2, -4, -0) tweak(sat=1.04) src=last w1=src.width h1=src.height src turnleft() eedi3() turnright() eedi3() spline36resize(w1,h1)
Last edited by poisondeathray; 17th Apr 2013 at 00:23.
-
After applying this filter a vertical green bar appears at the bottom of the frames and the frames look a lot
worse. -
"how do i use this to remove aliasing?"
And then you post an example where your source image is downright perfect. You shouldn't get the green bar if you change your Crop command to Crop(4, 0, -4, -0) or Crop(4, 2, -4, -2). -
Changing the crop value fixed the vertical bar but the edges look ugly
Last edited by x264; 17th Apr 2013 at 03:38.
-
What part of the "original" screenshot that you posted looks aliased to you? It isn't. That's why the filtered image looks worse.
-
I agree with vaporeon800, all these aa-filters are not intelligent in any way so applying a filter that is not needed can break things.
Ok, what do the functions Turnleft( ) and Turnright( ) do? -
I read that but why are those functions called before the EEDI3? do they aid in fixing the aliasing?
-
Is this code correct?
src=last
w1=src.width
h1=src.height
src
turnleft()
NNEDI3()
turnright()
NNEDI3()
spline36resize(w1,h1) -
it's basically the same as the typical aa via nnedi3:
Code:turnleft().nnedi3(field=1,nsize=4,dh=true).turnright().bicubicresize(width,height,0,0,0.5,0)
your source doesn't need anti aliasing and like you saw using anti aliasing will break stuff,... -