Hello!, I'm currently trying to restore these old episodes from an anime series and the only issue I can't fix is the aliasing.
(Take a look at the background)
[Attachment 93031 - Click to enlarge]
I can't seem to find a good antialiasing script that fully fixes that issue.
Can anyone help me out here? Thank you!
Note: The native resolution of the source is 960x540 and to resize is by using descale
(Another Note: I'm an AviSynth user)Code:debicubic(c=1, 960, 540)
SAMPLE FILE:https://drive.google.com/file/d/1kQSrx1-LQ7s_tavuYq7QOrzJ_3CNHBlc/view?usp=sharing
+ Reply to Thread
Results 1 to 3 of 3
-
Last edited by themon-master; 13th Jul 2026 at 13:25. Reason: Forgot the sample file lol
-
I recall quite decent results with tricks like this: https://forum.doom9.org/showpost.php?p=1560075&postcount=3 also pixelresize algorithms works decently with trick like this https://forum.videohelp.com/threads/377096-Good-antialiasing-in-avisynth#post2433948 - checked also my old scripts and perhaps something like this will work for you:
Realized that this is same code as in first link soCode:X9=Yadif(TurnLeft(VV),2,0) YY9=Yadif(TurnLeft(VV),2,1) VV9=TurnRight(Merge(XX9,YY9,0.5))
but you can try to rotate and combine bothCode:Merge(Yadif(2,0),Yadif(2,1),0.5)
-
Only Avisynth,.. if ml-based filters are an option using something like
- tfm()
- descale/resize to 960x540 (i.e. with debicubic)
- avs-mlrt some model from https://openmodeldb.info i.e. https://openmodeldb.info/models/2x-BIGOLDIES might do the trick
- adjust resolution if the model resized too much or not enough
(Actually showing separated cables in the middle. I didn't use AviSynth for those images, but some of the ml-models should produce similar outputs)
Cu Selurusers currently on my ignore list: deadrats, Stears555, marcorocchini
Similar Threads
-
Good Method to compress AVI source to MP4? Ffmpeg, Staxrip, Davinci?
By Neil-Betamax in forum RestorationReplies: 29Last Post: 6th Jun 2026, 16:32 -
Get rid from antialiasing / jaggies / edgy lines / whatever you call it
By diginoob in forum RestorationReplies: 1Last Post: 13th Jul 2025, 07:40 -
How to change color in one source to the color from the other source?
By Platos in forum Newbie / General discussionsReplies: 42Last Post: 16th May 2023, 20:05 -
Quick Dot Crawl /Antialiasing Avisynth Question
By Vaengence in forum Video ConversionReplies: 6Last Post: 15th Dec 2021, 21:26 -
Looking for Batch MP4 Normalization Script of existing script
By VideoFanatic in forum Video ConversionReplies: 6Last Post: 31st Jul 2021, 19:50



Quote