5
0

vivy: common: dammit varde export your types

This commit is contained in:
louis f 2021-04-15 10:03:43 -04:00
parent fdf970e97d
commit db71691c66
Signed by: louis
GPG Key ID: 44D7E1DE4E23D6F2

@ -42,7 +42,9 @@ def denoise(clip: vs.VideoNode) -> vs.VideoNode:
def deband(clip: vs.VideoNode) -> vs.VideoNode:
return vdf.dumb3kdb(clip, radius=18, threshold=36, grain=[24, 0])
deb = vdf.dumb3kdb(clip, radius=18, threshold=36, grain=[24, 0])
assert isinstance(deb, vs.VideoNode)
return deb
def antialias(clip: vs.VideoNode, noaa: Optional[List[Range]] = None) -> vs.VideoNode: