I'm trying to create AviSynth Super-Resolution script.
Original
http://www.mediafire.com/file/8ffo4a6i36d7gdn/Original.avi
Result
http://www.mediafire.com/file/coebq3y6c348139/Result%2810%29.avi
Original
http://www.mediafire.com/file/acx2y95hnisn4ud/Original%282%29.avi
Result
http://www.mediafire.com/file/mct2ddk37titqnv/Result10.avi
What do you think about the results? And can we say this is related to Super-Resolution.
Try DVDFab Video Downloader and rip Netflix video! Or Try DVDFab and copy Blu-rays! or rip iTunes movies!
+ Reply to Thread
Results 1 to 30 of 31
Thread
-
Last edited by ingoldie; 15th Feb 2018 at 09:03.
-
You should post your script so people can make suggestions. Oh, you won't? Nevermind then.
-
Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
Hi Video Restorer lordsmurf,
Where can I find your efforts about video restoration? -
I removed all halos. It is bettter now. By the way,less noise.
Original
http://www.mediafire.com/file/8ffo4a6i36d7gdn/Original.avi
Result
http://www.mediafire.com/file/n0agfs7qmdop84r/Result%2811%29.avi
Original2
http://www.mediafire.com/file/acx2y95hnisn4ud/Original%282%29.avi
Result2
http://www.mediafire.com/file/wi49jb2ez19w3ew/Result11.avi/file -
Last edited by ingoldie; 25th Apr 2019 at 09:00.
-
This is a thread that is over a year old. Over in doom9.org you are keeping alive an identical thread to which people have patiently attempted to provide answers, to which you respond, as you do here, by simply asking the same question over and over and over again.
There is no "super resolution." Please find something else to work on. Perpetual motion would be a good pursuit, having the same likelihood of success, and for the same reasons.
(I apologize to other forum members for being snarky, but I've wasted a lot of time over in doom9.org trying to help this person.)Last edited by johnmeyer; 24th Apr 2019 at 14:33. Reason: typo
-
Those are DCT ringing artifacts, also known as Mosquito Noise or Gibbs Noise.
https://en.wikipedia.org/wiki/Gibbs_phenomenon
There are many AviSynth filters that address the problem. MosquitoNR(), GibbsNoiseReduction(), etc. DgMpegDec's Mpeg2Source() has de-ringing options, also the Xvid codec's decoder.
Code:function GibbsNoiseReduction(clip c) { c Edge = MT_Edge("prewitt",ThY1=20,ThY2=40).RemoveGrain(17) Mask = MT_Logic(Edge.MT_Expand().MT_Expand().MT_Expand().MT_Expand(), Edge.MT_Inflate().MT_Inpand(), "xor").Blur(1.0).GreyScale() MT_Merge(Minblur(), Mask, Luma=True) }
Instead of using LanczosResize() use nnedi3_rpow2(). It's much better for upscaling.Last edited by jagabo; 25th Apr 2019 at 10:41.
-
Thank you jagabo,
But I'm getting "Invalid arguments to function 'Minblur'" error.
By the way, I don't want to use NNEDI3.Because it doesn't look natural. It makes image look like an oil painting
NNEDI3 (nnedi3_rpow2(rfactor = 2, nsize = 3, nns = 4, qual = 2, cshift = "spline36resize"))
So any other advice for upscaling? -
Or this, to those who said it couldn't be done.
[Attachment 48964 - Click to enlarge] -
Severe oversharpening halos and buzzing edges. At least the DCT noise is reduced.
-
-
well hang... you're right, but you gotta consider the trade off. I'd rather look at plasticky and sharp than the smeary, gritty mess of the original.
but p'raps I overcooked it just a tad -
I think I finally did it
Original
http://www.mediafire.com/file/8ffo4a6i36d7gdn/Original.avi/file
Result
http://www.mediafire.com/file/971vwbx8b2j3s1t/Result12.avi/file
Original2
http://www.mediafire.com/file/acx2y95hnisn4ud/Original%25282%2529.avi/file
Result2
http://www.mediafire.com/file/2r394euucxgovkv/Result%252812%2529.avi/file -
Presumably because he thinks he'll be able to sell it to gullible fools . . . ?
-
Need help with creating a GUI compatible with AviSynth
Original
http://www.mediafire.com/file/8ffo4a6i36d7gdn/Original.avi/file
Result
http://www.mediafire.com/file/3jyo569j0ujpyjy/Result14.avi/file
Original2
http://www.mediafire.com/file/acx2y95hnisn4ud/Original%25282%2529.avi/file
Result2
http://www.mediafire.com/file/3sizsr5597mkdkk/Result%252814%2529.avi/file
I need a GUI that I will be able to insert and hide(obfuscate) my AviSynth script into it.
Here is the GUI on my mind;
For example, here is a software named VideoCleaner you will see an AviSynth script inserted into AvsPmod.
http://videocleaner.com/
https://forum.doom9.org/showthread.php?p=1892115#post1892115
Please help!Last edited by ingoldie; 14th Feb 2020 at 11:47.
-
Original
http://www.mediafire.com/file/8ffo4a6i36d7gdn/Original.avi/file
Result (my enhancing script + lanczos4resize)
http://www.mediafire.com/file/14y3lmiw7aquyz3/Result15_lanczos4resize.avi/file
Result (my enhancing script + my upscaling script)
http://www.mediafire.com/file/75r63067f5r4vdw/Result16_my_upscaling_script.avi/file
Original2
http://www.mediafire.com/file/acx2y95hnisn4ud/Original%25282%2529.avi/file
Result2 (my enhancing script + lanczos4resize)
http://www.mediafire.com/file/o36nrlembt0c9ro/Result%252815%2529_lanczos4resize.avi/file
Result2 (my enhancing script + my upscaling script)
http://www.mediafire.com/file/n07ud62v6phn30o/Result%252816%2529_my_upscaling_script.avi/file
...And I need a GUI that I will be able to keep my AviSynth script in this GUI and load any video, then encode the video as 2x by clicking Save.
For example like this;
https://forum.doom9.org/showthread.php?p=1905362#post1905362
Here is the GUI on my mind;
I want to use the following button to display the original and the result for comparing.
To display the result
To display the original
Please help!
By the way, what do you think about my efforts?
Similar Threads
-
InpaintFunc.avs - Different result depending on Avisynth version
By hello_hello in forum Video ConversionReplies: 0Last Post: 24th May 2015, 06:09 -
Avisynth script help?
By PeterNL in forum Newbie / General discussionsReplies: 6Last Post: 10th Dec 2014, 12:35 -
Help with the AVISynth script
By Tri P in forum Newbie / General discussionsReplies: 0Last Post: 24th May 2014, 07:22 -
avisynth - How to write avisynth script for rgba overlay
By moelover in forum EditingReplies: 3Last Post: 13th Apr 2014, 13:24 -
How can i Use VDub Script[.vcf] into Avisynth Script[.avs] ( Megui )
By Maskoff in forum EditingReplies: 1Last Post: 25th Jun 2013, 16:30