Hi,
Is it possible to make DVD quality video file to be like HD (1280x720) video with a good image quality ?! and Which filter is helping me do make the image look better or enhance the quality when resizing the file ?!
Sample:
http://www.mediafire.com/?d1txvvovokebscv
Best Regards,
+ Reply to Thread
Results 1 to 13 of 13
-
-
You can do better than an upscaling player, especially with anime, but it's not worth the time and effort.
-
Nobody would ever design any filtering hardware without prototyping in software first. So anything done in hardware can be done in software too -- just not as fast.
Look at NNEDI() for AviSynth, for example.
In the end what you'll end up with won't be HD it will be enlarged, sharper, SD. And you'll be better off starting with the DVD rather than an Xvid AVI.Last edited by jagabo; 7th Dec 2010 at 12:37.
-
Here's your sample upscaled, filtered, sharpened, deshaked, to 960x720 h.264 mkv.
-
I did it all in AviSynth but I don't remember the exact filter chain. I used ColorYUV() to fix the black and white levels (contrast stretch), Deen() for noise filtering, NNEDI() to double the frame size, LanczosResize() to get it down to 960x720, Stab() to deshake, and a little Sharpen(). Fixing the levels made the biggest difference. The increased contrast enhanced the color and apparent sharpness.
Oh, I think I also enabled deblocking and deringing in the Xvid decoder.
There are still some problems. Posterization and flickering in the original where enhanced by the contrast stretch.Last edited by jagabo; 11th Dec 2010 at 17:09.
-
thanks jagabo i will try this filters but if remember the script you wrote post it here. please...
-
The filter chain was something like this:
AviSource("Tetsujin.avi")
ColorYUV(gain_y=50, off_y=-24)
Deen(thrY=12, thrUV=14)
nnedi3_rpow2(rfactor=2)
Stab()
Crop(4,4,-4,-4)
LanczosResize(960,720)
Sharpen(0.3) -
I noticed some of the frames in my upscaled video had a color shift but I thought it was just because the increased contrast amplified small color differences in the source. But I tested Stab() with some grayscale video today and it is discoloring some frames -- some are getting greenish cast.
Last edited by jagabo; 14th Dec 2010 at 17:03.
Similar Threads
-
resize and improve the quality
By SB4 in forum RestorationReplies: 2Last Post: 24th Nov 2010, 14:37 -
HTPC connected to LCD TV - how to resize image on TV???
By superfuzzy in forum DVB / IPTVReplies: 4Last Post: 12th Dec 2008, 17:45 -
How to Enhance Video Quality
By timequest in forum Newbie / General discussionsReplies: 2Last Post: 6th Oct 2008, 17:12 -
Which one directshow filter to resize the image ?
By jazzzy in forum Software PlayingReplies: 1Last Post: 20th Feb 2008, 09:55 -
Auto resize Image in Avisynth
By GioBarque in forum Newbie / General discussionsReplies: 8Last Post: 21st Jul 2007, 12:02