I have a DVD I would like to clean up. It has come out pretty nice but this one episode has artifacts on it that I do not know how to clean without blurring the video so badly that its not worth it, or really overkill DNR which destroys most of the video.
Here are a couple screenshots of it.
https://i.imgur.com/fAzQImC.png
https://i.imgur.com/Tz6D4IY.png
Any suggestions on how I can clean that without obliterating everything else? I tried powerful dehalo filter settings, but that didn't work.
+ Reply to Thread
Results 1 to 6 of 6
-
-
Something along the lines of this isn't too damaging:
Code:Spline36Resize(412, height) TurnRight() vInverse() TurnLeft() Spline36Resize(640, height)
Last edited by jagabo; 8th Dec 2024 at 11:34.
-
small typo "Spline36Resize(720.height)" should be "Spline36Resize(720,height)"
users currently on my ignore list: deadrats, Stears555, marcorocchini -
Oh, yes. Thanks. I originally had a slightly different script and screwed up when I changed it for posting. I also used the wrong value for the width of the source image. I'll fix the post to eliminate any confusion.
Last edited by jagabo; 8th Dec 2024 at 11:34.
-
You might protect some of the sharper vertical lines with something like:
Code:ImageSource("fAzQImC.png", start=0, end=23, fps=23.976) ConvertToYV12() src = last Spline36Resize(412, height) TurnRight() vInverse() TurnLeft() Spline36Resize(640, height) emask = sharpen(1.0, 0.0).mt_edge("-1 2 -1 -1 2 -1 -1 2 -1").mt_expand().mt_inpand().Blur(1.5) Overlay(last, src, mask=emask)
[Attachment 84022 - Click to enlarge]
The script will have to be adjusted if he's using a DVD source. -
That's actually pretty impressive. The results aren't really that bad either. Some smaller line in some areas look like I used an antialiaser and smudged, but its hardly bad.
You essentially just rotated the image, used vinverse on it, then rotated it back? I would have never thought of using vinverse at all let alone a horizontal cheat like that lol.
I just toned down the power of vinverse a bit and the destruction is almost nothing. It also softened a bit less.
https://slow.pics/c/7UNt2mvo
Code:src = last Spline36Resize(412, height) TurnRight() vinverse(amnt=5, sstr=3.5, scl=0.75) TurnLeft() LimitedSharpenFaster(ss_x=1.00, ss_y=1.00, strength=2, overshoot=0, undershoot=0, soft=0, edgemode=0) lanczosresize(640,480) emask = sharpen(1.0, 0.0).mt_edge("-1 2 -1 -1 2 -1 -1 2 -1").mt_expand().mt_inpand().Blur(1.5) Overlay(last, src, mask=emask) MergeChroma(last, src) LimitedSharpenFaster(ss_x=1.00, ss_y=1.00, strength=5, overshoot=0, undershoot=0, soft=0, edgemode=0)
Thanks!Last edited by killerteengohan; 8th Dec 2024 at 19:51.
Similar Threads
-
Add a black bar on video to mask the area without trimming
By loninappleton in forum EditingReplies: 52Last Post: 17th Dec 2024, 01:44 -
Canopus ADVC 100 Gives Only a Black Screen With a Thin Vertical Line
By dman535 in forum Capturing and VCRReplies: 6Last Post: 6th Oct 2024, 03:04 -
Is there a name for these vertical artifacts? Can they be filtered?
By LaserBones in forum Newbie / General discussionsReplies: 18Last Post: 2nd Oct 2024, 16:40 -
Atari Lynx LCD Screen Dark Vertical bar Problem Fix
By retroborg in forum Off topicReplies: 0Last Post: 21st Oct 2023, 08:01 -
FFMpeg Black bar Crop Command
By Daringbaaz in forum Newbie / General discussionsReplies: 3Last Post: 5th Dec 2020, 11:48