I have an animation im cleaning up, and I have it looking good, but there are a few scenes with dark areas where there are some colored compression artifacts.
I can remove the blocking easy enough, but I havent been able to remove the color.
I adjusted the colors so its easier to see where I am talking about since its pretty subtle.
Along the bench there is some green/yellow mixed in, its wrecking havoc once I clean everything up, gives the backboard a green hue.
[Attachment 71989 - Click to enlarge]
I have attached an example clip as well, im not sure if its possible to remove that, or lessen it?
Edit: I should note, im using vapoursynth
+ Reply to Thread
Results 1 to 5 of 5
-
-
I use AviSynth but you can probably translate this to vapoursynth. Try something like vsTTempSmooth(maxr=5, ythresh=5, uthresh=5, vthresh=5, strength=3). You can apply that only to dark areas (to limit possible damage to bright areas) with an alpha mask based on the luma:
Code:Mpeg2Source("turtle (1).d2v", CPU2="xxxxxx", Info=3) TFM(d2v="turtle (1).d2v") # IVTC TDecimate() # back to 23.976 fps ConvertBits(10) bmask = ColorYUV(off_y=-32).ColorYUV(gain_y=10000).Invert().Blur(1.0).GreyScale() vsTTempSmooth(maxr=5, ythresh=5, uthresh=5, vthresh=5, strength=3) Overlay(src, last, mask=bmask) ConvertBits(8, dither=0)
-
vsTTempSmooth does not really do the job for me.
(checked by applying Retinex after the filtering)
A masked CCD or DPIR, SCUNet, BasicVSR++, RealESRGAN and a bunch of other approaches work fine here: https://imgsli.com/MTg4MTIy
Cu Selurusers currently on my ignore list: deadrats, Stears555, marcorocchini -
*** DIGITIZING VHS / ANALOG VIDEOS SINCE 2001**** GEAR: JVC HR-S7700MS, TOSHIBA V733EF AND MORE
-
Original = What I see when I load the file you posted.
Retinex = What I see when I load the file you posted and apply Retinex. (to see the artifacts)
XXXX = What I see when I load the file you posted and apply XXXX and then Retinex. (to see what XXXXX did)
https://imgsli.com/MTg4MTIz/1/7
-> no clue what you want to say with "That's too dark", since you didn't ask for color grading suggestions, but on how to remove these artifacts.
Cu SelurLast edited by Selur; 26th Jun 2023 at 10:12.
users currently on my ignore list: deadrats, Stears555, marcorocchini
Similar Threads
-
Footage looks too dark. Any way to color correct it?
By Sunk in forum Capturing and VCRReplies: 76Last Post: 16th Jul 2023, 15:39 -
Handbrake knobs and dials to lessen grain in source
By SM1872 in forum Video ConversionReplies: 11Last Post: 17th Mar 2022, 21:32 -
Discolored areas in VHS captures
By Sharc in forum Capturing and VCRReplies: 10Last Post: 30th May 2021, 06:55 -
Remove color information from Handbrake encoded files
By swxrd in forum Video ConversionReplies: 8Last Post: 10th Oct 2020, 08:03 -
Seeing weird QTGMC output in specific areas
By ugnaught in forum RestorationReplies: 6Last Post: 7th Oct 2020, 07:27