Log in

View Full Version : Line darkening recommendation for Avisynth+ 64bit ?


Selur
26th March 2020, 01:11
Playing around with Avisynth+ 64bit, I was wondering what line darkening (for Anime/Cartoon) filters/scripts folks use.
For 32bit I know of:
- Toon (uses Toon-v1.1.dll)
- mfToon (uses warpsharp.dll)
- SuperToon (uses UnFilter.dll)
- FastLineDarkenMod
- Hysteria
now I only know of
- Hysteria
- FastLineDarkenMod
which work with 64bit and so I was wondering:

What alternatives to those two do people use that I don't know of? :)

Cu Selur

MatLz
28th March 2020, 14:30
Hi Selur,
Im the guy who posted the YT video one of your forum user did link.
Cant actually find my mail and password so I post here.

I extracted and shrinked the code to death for speed and usage simplicity from a script like LSF, SoftSharpen or Mftoon --I dont remember :stupid:

It is only using MaskTools.
function drk( clip IN , float "str" )
{
str=default( str , 100./3.)
INP=IN.mt_expand().mt_expand().mt_inpand().mt_inpand()
mt_lutxy( IN, INP , "x y - " + string(str/100.) + " * x +" , y=3 , u=2 , v=2 )
}
Hope it helps.

Selur
28th March 2020, 15:06
Thanks!
Hopefully a few other folks will post their scripts and filter recommendations.

Cu Selur