VideoHelp Forum
+ Reply to Thread
Results 1 to 7 of 7
Thread
  1. Hello,
    I´m new here, so I´m not sure if this is the right place to ask this, sorry if I´m wrong.

    There is a fansub group who are upscaling their HD episodes amazingly!
    The Anime Naruto is produced just in SD and it gets upscaled to HD when it airs on TV and on the official streaming site crunchyroll.
    The fansub group takes this already officially upscaled material and upscale it to 1080p where it looks like a bluray-rip, take a look here:

    http://screenshotcomparison.com/comparison/48395

    I noticed that the colours are better and the lines are thinner and sharper,
    but if I try a normal sharpening and contrast script, it never gets this good.

    Someone here knows what filters they could have used in their script?
    I want to upscale some of my 720p tv rip anime, which never got a bluray release, like Bleach and One Piece
    and I would love to get an amazing quality improve like that in the screenshot comparison.
    Last edited by Narutofreak1412; 6th Mar 2014 at 04:56.
    Quote Quote  
  2. They probably use AviSynth and filters like nnedi3_rpow2(), Toon(), aWarpSharp2() etc. Similar 480p to 1080p upscale of animated material:

    Click image for larger version

Name:	zim.jpg
Views:	710
Size:	206.9 KB
ID:	23930
    Last edited by jagabo; 6th Mar 2014 at 08:01.
    Quote Quote  
  3. Banned
    Join Date
    Nov 2005
    Location
    United States
    Search Comp PM
    the obvious question is why do you want to upscale it in software, which you are only making the picture bigger and not adding any additional information and not save yourself the headaches and just let your player upscale?
    Quote Quote  
  4. Animated material can be upscaled in software much better than any TV or DVD/Blu-ray player can upscale. Largely because it doesn't have any detail to start with. All you're really concerned about is keeping lines and edges sharp without creating aliasing artifacts.
    Quote Quote  
  5. Download the standard upscale image from that comparison page. Then use this script:

    Code:
    ImageSource("1384110565_4589731260[1].jpg", start=0, end=23, fps=23.976) 
    ConvertToYV12()
    Spline64Resize(720,480) # downscale back to SD resolution as a starting point
    ColorYUV(cont_u=80, cont_v=80) # pump up the saturation
    Toon() # clean some edges, 
    nnedi3_rpow2(2, cshift="Spline64Resize", fwidth=1280, fheight=720)
    aWarpSharp(depth=10)
    sharpen(0.3)
    nnedi3_rpow2(2, cshift="Spline64Resize", fwidth=1920, fheight=1080)
    aWarpSharp(depth=10)
    sharpen(0.3)
    That pretty close to what they've done. It retains more detail in the background (their lack of detail may be from overcompression after scaling). You can fine tune the Toon(), aWarpSharp2(), and Sharpen() settings as desired. You'll also want to convert rec.601 colors to rec.709 when upscaling SD to HD, ColorMatrix(mode="Rec.601->Rec.709").
    Last edited by jagabo; 6th Mar 2014 at 11:29.
    Quote Quote  
  6. Thank you very much for that, really useful information,
    that´s exactly what I was looking for!

    I used it on that picture from the screenshot-comparing-site and it looks really close to it,
    just the peaks of his hair are still a little unsharp, but there are much more details in the background.

    I´m currently testing out a few things out how it looks with different values on different sources.
    Here is what I got on another episode of the same anime:

    http://screenshotcomparison.com/comparison/65567

    I´m really satisfied with that, thanks a lot again!
    Quote Quote  
  7. Keep in mind I'm starting with the poorly upscaled image, downscaling it in an attempt to simulate an SD source, and upscaling from there. Starting with the same source should give better results.

    You can try to bring out a little more of the outlines (in places where they've faded away) by fine tuning Toon(), aWarpSharp2(), FastLineDarkenMod(), Sharpen(), etc. Also, I thinned the lines to match what they did. But my personal preference is to leave them thick as I think that's closer to the original. You might consider that.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!