24.03.2024, 12:20
Side note, looking at:
shouldn't you use 'range(1, max_steps-1)', so that max_steps sets how often the filter is applied ?
Otherwise for max_steps the filter would be applied 'max_steps +1 '-times.
would return the 'max_steps +1 ' vs_clip_chroma_stabilizer without the motion masking.
Shouldn't "if tht < 1 or tht > 255" be "if tht < 9 or tht > 255" ?
Cu Selur
clip_limited = vs_clip_chroma_stabilizer(clip, deviation=deviation)
for i in range(1, max_steps):
clip_limited=vs_clip_chroma_stabilizer(clip_limited, deviation=deviation)
Otherwise for max_steps the filter would be applied 'max_steps +1 '-times.
Quote:Now the problem:Okay, what is the problem, atm.
If I set "tht=0" the motion mask is not applied and I can see the filter working:
Here with steps=1
if tht < 1 or tht > 255:
return clip_limited
Shouldn't "if tht < 1 or tht > 255" be "if tht < 9 or tht > 255" ?
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.