06.07.2022, 17:50
Probably not really helping if apply ctmf to a specific region, frame range could be added, you could get rid of the halo,....:
![[Image: ctmf.png]](https://i.ibb.co/GQYDZxX/ctmf.png)
Cu Selur
# cropping the video to 736x572
clip = core.std.CropRel(clip=clip, left=8, right=24, top=2, bottom=2)
# denoising using CTMF
def vsCTMFRegion1(clip,*args):
return core.ctmf.CTMF(clip=clip, radius=3, memsize=1048576)
end = clip.num_frames-1
mapping = [
(0, end), [vsCTMFRegion1],
]
clip = animate.run(clip, mapping, selection=(156,288,580,260))
![[Image: ctmf.png]](https://i.ibb.co/GQYDZxX/ctmf.png)
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.