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] Trying to remove VHS dropout (comet tails)
#1
I've already used KillerSpots in Vapoursynth which removed a lot of the spots, but not all. 

For a second pass, I have also tried switching over to Avisynth and using the additional settings in DeSpot, but I can't seem to get it to remove the remaining spots. 

Any suggestions?

Sample clip

There is also some additional noise on the whole video frames which I am unable to remove - it looks like a strange moiré pattern?
Reply
#2
Masked Spotless with high (i.e. 5 or 6) temporal radius?
For example:
## Starting applying 'EdgeMask (Prewitt)' masked filtering for vsSpotLess
clipMask = clip
clipMask = core.std.Prewitt(clip=clipMask)
clipMask = core.std.Maximum(clipMask)
clipMask = core.std.ShufflePlanes(clips=[clipMask], planes=[0], colorfamily=vs.GRAY)
clipFiltered = clip
# Spot removal using SpotLess
clipFiltered = SpotLess.SpotLess(clip=clipFiltered, radT=6, pel=1, smoother="zsmooth")
clipMask = core.resize.Bicubic(clip=clipMask, format=vs.YUV422P10, range_s="limited", dither_type="error_diffusion")
clip = core.std.MaskedMerge(clip, clipFiltered, clipMask) # PrewittEdgeMask
## Finished applying 'PrewittEdgeMask' masked filtering for vsSpotLess
Probably would be better to apply something like this on the source before applying Despot and you might have to try different masks and settings. Smile

Cu Selur
Reply
#3
I just tried running the original ProRes 422HQ file through AVIsynth to re-try the DeSpot filter but now I get a preview error - ConvertToYV12 - only 8 bit sources allowed.

Do I need to convert to standard ProRes 422 for this to work?
Reply
#4
Quote:I just tried running the original ProRes 422HQ file through AVIsynth to re-try the DeSpot
not what I suggested,..
Quote:now I get a preview error - ConvertToYV12 - only 8 bit sources allowed.

Do I need to convert to standard ProRes 422 for this to work?
Strange, according to the source code Hybrid should be aware that Avisynths DeSpot requires YV12@8bit.
Also tried it and it works fine here:
LWLibavVideoSource("G:\TestClips&Co\files\ProRes\Test Patterns Resolve 422 HQ 10-bit.mov",cache=false,dr=true,format="YUV422P10", prefer_hw=0,repeat=true)
# current resolution: 720x576
# despotting using DeSpot
# Converting from 10 to 8bit for DeSpot
ConvertBits(8)
ConvertToYV12(interlaced=false)
DeSpot(median=false,interlaced=false)
Hybrid automatically converted to 8bit and YV12.

Cu Selur
Reply
#5
Also, where do I find EdgeMask?
Reply
#6
You enable the Masking controls (Filtering->Masking->Ui->Show 'Masked'-controls) and then the controls are next to Spotless.

Cu Selur
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)