VideoHelp Forum




+ Reply to Thread
Results 1 to 15 of 15
  1. The chroma seems to glow around the sword, feel, and arms, and it seems to trail the action. Not sure what this called or how to tackle it.

    Sample attached in Lagarith (166 MB).
    Image Attached Files
    Last edited by premiumcapture; 11th Apr 2015 at 23:27.
    Quote Quote  
  2. You mean the halos at high contrast edges? Those are from over sharpening by the VHS deck. And maybe from your capture device too. If your VHS deck has a sharpness control turn it down. The same goes for your capture device. You can alleviate it with a dehalo filter like dehalo_alpha() in AviSynth.

    Code:
    AviSource("ijs.avi") 
    ConvertToYV12(interlaced=true) # dehalo_alpha requires YV12
    Separatefields()
    Dehalo_alpha(rx=4, ry=2)
    Weave()
    original on left, dehalo on the right:

    Click image for larger version

Name:	dehalo.jpg
Views:	1784
Size:	72.6 KB
ID:	31188
    Quote Quote  
  3. Originally Posted by jagabo View Post
    You mean the halos at high contrast edges? Those are from over sharpening by the VHS deck. And maybe from your capture device too. If your VHS deck has a sharpness control turn it down. The same goes for your capture device. You can alleviate it with a dehalo filter like dehalo_alpha() in AviSynth.

    Code:
    AviSource("ijs.avi") 
    ConvertToYV12(interlaced=true) # dehalo_alpha requires YV12
    Separatefields()
    Dehalo_alpha(rx=4, ry=2)
    Weave()
    original on left, dehalo on the right:

    Image
    [Attachment 31188 - Click to enlarge]

    Thanks, does this also result the brown glow around the sword and by the mans arms where the arrows are pointed is also a result of sharpening?
    Image Attached Thumbnails Click image for larger version

Name:	vlcsnap-2015-04-12-11h02m33s116 - Copy.png
Views:	609
Size:	458.9 KB
ID:	31192  

    Quote Quote  
  4. Video Restorer lordsmurf's Avatar
    Join Date
    Jun 2003
    Location
    dFAQ.us/lordsmurf
    Search Comp PM
    Chroma is offset +
    the chroma is smeared (even when offset is fixed, it will bleed over).

    Fix offset in Avisynth.
    Use VirtualDub CCD to fix the rest.
    Want my help? Ask here! (not via PM!)
    FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS
    Quote Quote  
  5. Thank you for the help LS. I can script it myself, but how can you tell which direction it is offset in? I played with vertical offset and it looked better in some areas and not so in others.
    Quote Quote  
  6. Video Restorer lordsmurf's Avatar
    Join Date
    Jun 2003
    Location
    dFAQ.us/lordsmurf
    Search Comp PM
    Originally Posted by premiumcapture View Post
    Thank you for the help LS. I can script it myself, but how can you tell which direction it is offset in? I played with vertical offset and it looked better in some areas and not so in others.
    That's the bleeding. You have to do as best as possible, then let CCD take over.
    Want my help? Ask here! (not via PM!)
    FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS
    Quote Quote  
  7. You can see how much to shift the colors by looking at the video. Here's the source video with a big saturation increase (to see the colors better) and the luma channel to the right, then the U and V channels (stretched to the same size as the luma) below:
    Click image for larger version

Name:	before.jpg
Views:	2141
Size:	113.1 KB
ID:	31197

    After sharpening the chroma and shifting up by 4 pixels, right by two pixels:
    Click image for larger version

Name:	after.jpg
Views:	1510
Size:	102.2 KB
ID:	31198

    Code:
    MergeChroma(aWarpSharp(depth=20))
    ChromaShift(l=-4,c=2)
    See how the colors align better on the flag and the barrels. The chroma channels in VHS are very low resolution horizontally. About 40 lines across the entire frame.
    Quote Quote  
  8. Originally Posted by jagabo View Post
    You can see how much to shift the colors by looking at the video. Here's the source video with a big saturation increase (to see the colors better) and the luma channel to the right, then the U and V channels (stretched to the same size as the luma) below:
    Image
    [Attachment 31197 - Click to enlarge]


    After sharpening the chroma and shifting up by 4 pixels, right by two pixels:
    Image
    [Attachment 31198 - Click to enlarge]


    Code:
    MergeChroma(aWarpSharp(depth=20))
    ChromaShift(l=-4,c=2)
    See how the colors align better on the flag and the barrels. The chroma channels in VHS are very low resolution horizontally. About 40 lines across the entire frame.
    Awesome, thank you for this! Very insightful.

    Just for me to double-check here - I can apply WarpSharp only to chroma, right? Also, when you say that the chroma channels are low resolution, are you saying that this particular issue in the example photos you posted is common to the VHS format? Would this include the sensation of chroma lagging behind luma in some cases?

    Sorry for all the questions, but I am learning a lot here and I cant help it
    Quote Quote  
  9. Originally Posted by lordsmurf View Post
    Originally Posted by premiumcapture View Post
    Thank you for the help LS. I can script it myself, but how can you tell which direction it is offset in? I played with vertical offset and it looked better in some areas and not so in others.
    That's the bleeding. You have to do as best as possible, then let CCD take over.
    Is there a difference between CCD in VirtualDub and AviSynth? In this instance, I can see a difference with CCD but it is relatively weak, and making more than one or two passes begins to kill the color in unintended places in the trouble spots.
    Quote Quote  
  10. Originally Posted by premiumcapture View Post
    Just for me to double-check here - I can apply WarpSharp only to chroma, right?
    Yes. MergeChroma() applies the chroma channels of one video to the luma channel of another.

    Originally Posted by premiumcapture View Post
    Also, when you say that the chroma channels are low resolution, are you saying that this particular issue in the example photos you posted is common to the VHS format?
    All VHS. I think your video is a little worse than normal though. Probably an n'th generation copy.

    Originally Posted by premiumcapture View Post
    Would this include the sensation of chroma lagging behind luma in some cases?
    You mean temporally? No. That's more likely to be caused by a digital temporal noise filter.
    Quote Quote  
  11. Originally Posted by jagabo View Post
    Originally Posted by premiumcapture View Post
    Would this include the sensation of chroma lagging behind luma in some cases?
    You mean temporally? No. That's more likely to be caused by a digital temporal noise filter.
    Yes, temporally. Is this a filter inside the VCR? Using a JVC 9800 and AG1980 and getting similar results on both.
    Quote Quote  
  12. I'm not real familiar with those S-VHS decks but they might have temporal noise filters.

    Also be aware that aWarpSharp() requires progressive frames. It will blend the chroma of the two fields together if you use it on interlaced frames. MergeChroma() can be used on interlaced frames -- if both videos are interlaced.
    Quote Quote  
  13. Originally Posted by jagabo View Post
    I'm not real familiar with those S-VHS decks but they might have temporal noise filters.

    Also be aware that aWarpSharp() requires progressive frames. It will blend the chroma of the two fields together if you use it on interlaced frames. MergeChroma() can be used on interlaced frames -- if both videos are interlaced.
    I just realized that between the two copies of the same source I have, the one posted is an nth copy as you suspected. The other one I own is MUCH cleaner. No need for me to freak out about my equipment anymore

    Thanks for the help. Between here and the DigitalFaq, I am on my way to have a degree
    Quote Quote  
  14. Video Restorer lordsmurf's Avatar
    Join Date
    Jun 2003
    Location
    dFAQ.us/lordsmurf
    Search Comp PM
    Low chroma resolution is what causes the bleeding, even after proper alignment.

    "Mouse trails" are always a temporal filter done badly.
    But it's not just VCRs, or software. You often saw this on 80s camcorders and VCRs, during recording.
    Don't be quick to place blame. (That happens too much around here.)
    Want my help? Ask here! (not via PM!)
    FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS
    Quote Quote  
  15. Originally Posted by lordsmurf View Post
    Low chroma resolution is what causes the bleeding, even after proper alignment.

    "Mouse trails" are always a temporal filter done badly.
    But it's not just VCRs, or software. You often saw this on 80s camcorders and VCRs, during recording.
    Don't be quick to place blame. (That happens too much around here.)
    By temporal filter, are you talking about bad temporal denoising? Is this usually done by a VCR or is it inherent in most capture equipment? I noticed multi-generational tapes seem to exhibit it very obviously.
    Quote Quote  



Similar Threads

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