I have this old DVD footage that exhibits a severe moiré-like pattern and I have no idea how to work with it. I've tried running TemporalDegrain and Santiag just to see, but as I expected they didn't really improved the picture. Thoughts?
[Attachment 52030 - Click to enlarge]
(an upscaled version)
[Attachment 52031 - Click to enlarge]
+ Reply to Thread
Results 1 to 9 of 9
-
-
That's not moire. It's dot crawl artifacts -- the chroma carrier has not be separated from the luma.
https://en.wikipedia.org/wiki/Dot_crawl
There are many dot crawl filters available for AviSynth.
http://avisynth.nl/index.php/External_filters#Rainbow_.26_Dot_Crawl_Removal
If the video isn't real sharp (for example a VHS recording) you can downscale to about half width, then upscale again.
Code:Spline36Resize(width/2,height).Spline36Resize(width,height)
-
Are you certain this is dot crawl? I've tried LUTDeCrawl and Checkmate but both fail to improve the picture in any significant way which I find surprising. I'm having more luck with rescaling though.
[Attachment 52032 - Click to enlarge] -
I'm pretty sure jagabo's diagnosis is correct: dot crawl.
You should do a quick search in this forum, and also over at doom9.org. Just enter "dot crawl" and see what solutions are posted.
I first had to deal with this when fixing an old Kinescope. I posted about it here:
Remove cross hatch pattern from Kinescope
I had really good luck using a simple convolution kernel. That link will provide you with the details. -
Thank you, using the custom matrix worked out much better than any decrawlers I tried and the result ends up being quite acceptable. I guess I can't do much more without managing to locate the original VHS source now.
-
You sometimes see something this from bad cables or connectors. Also, is this PAL or NTSC? The dot crawl filters don't work well for PAL. A video sample would be better.
Last edited by jagabo; 17th Feb 2020 at 17:59.
-
-
I'm trying your script out of curiosity Johnmeyer , i get a "generalconvolution requires rgba input" despite the converttorgb32() right before. Got an idea ?
edit: nevermind, syntax problem . But all i get is b/w pictures...weirdLast edited by themaster1; 18th Feb 2020 at 05:04.
*** DIGITIZING VHS / ANALOG VIDEOS SINCE 2001**** GEAR: JVC HR-S7700MS, TOSHIBA V733EF AND MORE -
I don't know exactly what matrix you used, but there are other things you can do to reduce the blurring caused by GeneralConvolution(). You can for example limit the blurring to highly saturated colors where it's worst. Or protect sharp edges so they don't get blurred. Here's an example of how to use a saturation mask to limit the blurring to highly saturated areas:
Code:########################################################################## # # simple saturation-like mask # ########################################################################## function Saturation(clip vid) { U = Overlay(vid.UtoY().ColorYUV(off_y=-128), vid.UtoY().Invert().ColorYUV(off_y=-128), mode="add") V = Overlay(vid.VtoY().ColorYUV(off_y=-128), vid.VtoY().Invert().ColorYUV(off_y=-128), mode="add") Overlay(U, V, mode="add") Spline36Resize(vid.width, vid.height) } ########################################################################## WhateverSource("filename.ext") src = last # remember source satmask = Saturation().ColorYUV(gain_y=1500, off_y=-50) blurred = BilinearResize(width/2,height).Spline36Resize(width,height) Overlay(src, blurred, mask=satmask) StackVertical(StackHorizontal(src, blurred), StackHorizontal(satmask, last)) # show original, blurred, satmask, and final result
Similar Threads
-
reducing noise and making it crisper
By fifalwt91 in forum AudioReplies: 8Last Post: 16th Sep 2018, 13:42 -
Removing or reducing pixelation
By CM120884 in forum EditingReplies: 6Last Post: 11th Apr 2018, 17:09 -
Reducing moire on DVD rips using Handbrake
By ministry88 in forum Newbie / General discussionsReplies: 15Last Post: 20th Jun 2017, 22:42 -
Help with reducing (either it's echo, or reverb from audio)
By Infomaniac95 in forum AudioReplies: 3Last Post: 16th Nov 2016, 11:41 -
Reducing size of BluRay rips
By aye in forum Video ConversionReplies: 11Last Post: 16th May 2015, 04:43