VideoHelp Forum




+ Reply to Thread
Results 1 to 4 of 4
  1. This does not look like a simple shift them over a tad with chroma shifting. They seem out of place almost as if the Blu-Ray was scaled badly or something. Its very easy to notice especially near black lines.

    (Image Removed)

    I tried chroma sharpening with mergechroma(awarpsharp2(depth=10)). It seems to help some but it does not exactly fix the issue.

    Does anyone whats up with this or how to adjust it better than just chroma sharpening it?
    Last edited by killerteengohan; 23rd Jan 2018 at 13:10.
    Quote Quote  
  2. That HD video looks liek it was upscaled from an analog SD source with low horizontal chroma resolution. You need to sharpen and shift the chroma horizontally. Something along the lines of:

    Code:
    ImageSource("28My6hp.png", start=0, end=23, fps=23.976) 
    ConvertToYV12()
    
    U = UtoY()
    U = U.BilinearResize(U.width/2, U.height).aWarpSharp(depth=10).nnedi3_rpow2(4, cshift="Spline36Resize", fwidth=U.width, fheight=U.height)
    
    V = VtoY()
    V = V.BilinearResize(V.width/2, V.height).aWarpSharp(depth=10).nnedi3_rpow2(4, cshift="Spline36Resize", fwidth=V.width, fheight=V.height)
    
    YtoUV(U, V, last)
    ChromaShift(c=-2)
    Or, if you know that U and V need the same treatment:

    Code:
    ImageSource("28My6hp.png", start=0, end=23, fps=23.976) 
    ConvertToYV12()
    MergeChroma(last, BilinearResize(width/2, height).aWarpSharp(depth=10).nnedi3_rpow2(2, cshift="Spline36Resize", fwidth=width, fheight=height))
    ChromaShift(c=-2)
    Click image for larger version

Name:	uv.jpg
Views:	192
Size:	191.0 KB
ID:	44463

    Of course, you might want to sharpen the luma too.
    Last edited by jagabo; 21st Jan 2018 at 20:52.
    Quote Quote  
  3. Is this good enough for this in your opinion?
    Last edited by killerteengohan; 23rd Jan 2018 at 13:09.
    Quote Quote  
  4. It's up to you.
    Quote Quote  



Similar Threads

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