This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

[HELP] Ghosting on animation
#1
Hi,

I have currently a problem with a bluray.
It is some animation and the same problem is also present on the DVD release (I own both).

There is some ghosting :
[Image: ghosting.jpg]

You can find a 1 minute clip with this link : https://drop.idrix.fr/r/e8RBZk52ZJ#vJ9sE...VNV7KDqJk=.

I am using the following script to do some IVTC :
import vapoursynth as vs
import havsfunc as haf
import awsmfunc as awf
from vsdehalo import fine_dehalo
import vsdeinterlace as ivtc
import vsTAAmbk as taa
import validate
import math
core = vs.core

episode = core.bs.VideoSource(source='./Clip_1min.mkv', cachemode = 4)

#episode = core.std.AssumeFPS(clip=episode, fpsnum=25, fpsden=1)

# Setting detected color matrix
episode = core.std.SetFrameProps(clip=episode, _Matrix=1)
# color transfer
if validate.transferIsInvalid(episode):
    episode = core.std.SetFrameProps(clip=episode, _Transfer=1)
# setting color primaries
if validate.primariesIsInvalid(episode):
    episode = core.std.SetFrameProps(clip=episode, _Primaries=1)

# setting color range to TV (limited) range.
episode = core.std.SetFrameProps(clip=episode, _ColorRange=1)

# making sure the detected scan type is set (detected: top field first)
episode = core.std.SetFieldBased(episode, 2)

episode = core.vivtc.VFM(clip=episode, order=0, field=2, mode=1, mchroma=True, cthresh=9, mi=80, chroma=True, blockx=16, blocky=16, y0=16, y1=16, scthresh=12, micmatch=1, micout=False)
episode = core.vivtc.VDecimate(clip=episode, cycle=5, chroma=True, dupthresh=1.1, scthresh=15, blockx=16, blocky=16)

episode = core.std.SetFrameProps(clip=episode, _FieldBased=vs.FIELD_PROGRESSIVE)

episode.set_output()

I tried to use fine_dehalo, LGhost but without success.

Should I use some mask with another plugin ?

Best regards,

Klink
Reply


Messages In This Thread
Ghosting on animation - by Klink - 08.07.2025, 18:59
RE: Ghosting on animation - by Selur - 08.07.2025, 20:45
RE: Ghosting on animation - by Klink - 09.07.2025, 20:08

Forum Jump:


Users browsing this thread: 1 Guest(s)