#####调整亮度#####
Tweak(clip clip [, float hue] [, float sat] [, float bright] [, float cont] [, bool coring])
所以是第3組數字(bright) 範圍: (-255.0 to 255.0, default 0.0)
Levels(clip input, int input_low, float gamma, int input_high, int output_low,int output_high, bool coring)
也可以调整的是gamma 其值以1.x 來调整,通常gamma是指亮度比,不適合做精確的亮度调整
##############
UnFilter Soften/Sharpen filter for Avisynth
所以可知是一個 柔化/銳化 濾鏡
UnFilter(HSharp, VSharp) 如此就是水平重直皆銳化
LumaFilter (發光)是 MPEG2Dec3.dll 的函式
(MPEG2Dec3 Plugin)::LumaFilter
LumaFilter(clip, [lumoff], [lumgain])
lumgain 是發光增益
lumoff 是發光偏移
當你覺得你的畫面在晚上時(是指影片)根本看不清楚,此時就可試試
例子:
To Darken Luminosity.
LumaFilter(-10,0.9)
To Ligthen Luminosity.
LumaFilter(+10,1.1)