VideoHelp Forum
+ Reply to Thread
Page 1 of 4
1 2 3 ... LastLast
Results 1 to 30 of 106
Thread
  1. -Removed
    Last edited by MrJacobAngle; 14th Sep 2010 at 10:17.
    Quote Quote  
  2. Is this a digital file or from a VHS tape of yours?
    Quote Quote  
  3. It's from a VHS tape
    But the video has then been transferred to my computer
    Quote Quote  
  4. Member pirej's Avatar
    Join Date
    Mar 2008
    Location
    Macedonia
    Search Comp PM
    Try with virtualdub plug-in "CollorMill", you can get something more acceptable, but you will never get a result like the (good one)example.
    Quote Quote  
  5. I've never tired that CollorMill before, would anyone of you be so kind and try to see what you can do with it on this picture?

    Quote Quote  
  6. Member pirej's Avatar
    Join Date
    Mar 2008
    Location
    Macedonia
    Search Comp PM
    This is quick edit with CollorMill, there other way's too..
    Image Attached Thumbnails Click image for larger version

Name:	with collorMill.jpg
Views:	184
Size:	213.9 KB
ID:	2762  

    Quote Quote  
  7. Could you tell me the settings you've used for that image?
    Quote Quote  
  8. Member
    Join Date
    Mar 2007
    Location
    South Africa
    Search Comp PM
    I'm not sure if I've done this right, as I've never tried to upload an image from my pc to here. When I preview the post it appears at the bottom of my post.

    Anyway, I used Virtualdub to do it. It was a quick adjustment based on the one frame sample.

    I used 2 'internal' virtualdub filters (they come with virtualdub). First the 'Levels' filter where I set the lower setting of the Input Levels to 48. My sample was done with the 'Operate in luma instead of RGB' box checked, but unchecking it actually appears to intensify the colours a bit, so you might want to try it.
    The second filter is 'HSV' adjust. Here the values were: Hue +39.7 and Saturation x177.5% with Value being left alone. The very precise numbers are simply a result of dragging the sliders!

    The exact settings may need to be adjusted a bit when looking at more of the video, but it's a good starting point. It actually took me more time to type this post than to do the adjustments!

    I hope this is helpful.
    Rod
    Image Attached Thumbnails Click image for larger version

Name:	Colorfixed.jpg
Views:	147
Size:	221.2 KB
ID:	2761  

    Quote Quote  
  9. Thanks for the usefull information guys

    Is there anything I can do to change the skin tone, to a more brown color?

    Cause we all know Michael Jackson was brown
    Quote Quote  
  10. Member pirej's Avatar
    Join Date
    Mar 2008
    Location
    Macedonia
    Search Comp PM
    Code:
    VirtualDub.audio.SetSource(1);
    VirtualDub.audio.SetMode(0);
    VirtualDub.audio.SetInterleave(1,500,1,0,0);
    VirtualDub.audio.SetClipMode(1,1);
    VirtualDub.audio.SetConversion(0,0,0,0,0);
    VirtualDub.audio.SetVolume();
    VirtualDub.audio.SetCompression();
    VirtualDub.audio.EnableFilterGraph(0);
    VirtualDub.video.SetInputFormat(0);
    VirtualDub.video.SetOutputFormat(7);
    VirtualDub.video.SetMode(3);
    VirtualDub.video.SetSmartRendering(0);
    VirtualDub.video.SetPreserveEmptyFrames(0);
    VirtualDub.video.SetFrameRate2(0,0,1);
    VirtualDub.video.SetIVTC(0, 0, 0, 0);
    VirtualDub.video.SetCompression();
    VirtualDub.video.filters.Clear();
    VirtualDub.video.filters.Add("Color Mill(2.1)");
    VirtualDub.video.filters.instance[0].Config(25700, 25700, 22116, 25700, 17508, 25662, 30836, 25733, 25691, 27216, 25690, 25700, 25700, 1124, 7);
    VirtualDub.audio.filters.Clear();
    Copy this code, and paste it in notepad, than save it as ColorMill setings.vcf

    Find the "ColorMill (2.1)" plugin (google it), put it in virtualdub plugin folder, open the foto(video) with Virtualdub, and click "file/load processing setings", than navigate to the ColorMill setings.vcf file and open it.
    Quote Quote  
  11. It looks great!

    But what can I do to make the skin tone more brown?
    Right now the skin tone looks like it's almost black/white.

    Also is there any good noise reduction tool that doesn't remove that many details?
    Last edited by MrJacobAngle; 22nd Jul 2010 at 19:15.
    Quote Quote  
  12. I would try gradation curves. Get a shot with something white with a good grayscale range then use that to adjust the individual RGB curves. Or take pirej's settings and bump the saturation up a bit.
    Last edited by jagabo; 22nd Jul 2010 at 20:53.
    Quote Quote  
  13. Member
    Join Date
    Jun 2007
    Location
    Canada
    Search Comp PM
    If you are into avisynth:

    ImageReader("C:\collorfix0000.png")
    converttoyv12(interlaced=false)
    tweak(-40,2.2,-16,1.07,coring=false)
    deen("a2d",7,0,20)

    P.S. Although the png is rgb then yv12 I kept it "non-interlaced"
    If you were processing an interlaced source and want to keep it interlaced then converttoyv12(interlaced=true)
    Image Attached Thumbnails Click image for larger version

Name:	TestColor.png
Views:	175
Size:	1,014.7 KB
ID:	2765  

    Last edited by wiseant; 23rd Jul 2010 at 02:25.
    Quote Quote  
  14. Thank you, Wiseant.

    Do you know how I could make the skin tone a bit more brown?
    Quote Quote  
  15. Saturation. And wisant's image probably needs to have the black level lowered.
    Quote Quote  
  16. Indeed, I lowered the black levels from his script.

    I know that I can just boost up the saturation, but when I do so, sometimes the video gets very over-saturated.
    Any other way the fix the brown color of the face, without getting some of the video over-saturated?.
    Quote Quote  
  17. ColorYUV(gain_y=60, gamma_y=-50, off_y=-55, cont_u=400, cont_v=400)
    Tweak(hue=-30)
    ChromaShift(c=-4) #shift colors left by 4 pixels

    Click image for larger version

Name:	adjusted.jpg
Views:	340
Size:	176.4 KB
ID:	2768

    Pulling the gamma down a little more will bring out some more color in his face.
    Quote Quote  
  18. Try this:

    ColorYUV(gamma_y=-120, cont_u=350, cont_v=350)
    Tweak(hue=-30)
    ChromaShift(c=-4) #shift colors left by 4 pixels

    Click image for larger version

Name:	adjusted2.jpg
Views:	257
Size:	167.6 KB
ID:	2775
    Last edited by jagabo; 23rd Jul 2010 at 19:09.
    Quote Quote  
  19. Great! Thanks Jagabo!

    Also is there any way to reduce some of the noise/color-noise?
    Quote Quote  
  20. Wiseant used Deen() to reduce noise a bit earlier. Check out CNR2 (chroma noise reducer) in AviSynth. You can also try the VHS (good for VHS chroma noise) and Neat Video (probably the best oll around noise reducer, but very slow) filters in VirtualDub.
    Quote Quote  
  21. Thanks, also.

    How can I correct this green color-noise? :/
    Image Attached Thumbnails Click image for larger version

Name:	Green noise0000.bmp
Views:	175
Size:	1,012.6 KB
ID:	2769  

    Quote Quote  
  22. The above filters will help with that. They are temporal filters -- they require multiple consecutive frames. So you can't see what they do with a single image.
    Quote Quote  
  23. Okay. I've imported your script, now the only problem is, that sometimes there are too much red and it becomes very over-saturated at some points. Anyway to fix that little problem?
    Quote Quote  
  24. Yes, change the parameters for each of the filters. You'll either have to work in sections (ie, apply different filters to different parts of the video) or find some compromise setting for the whole video.
    Quote Quote  
  25. Okay, thank you very much. You've really helped a lot!
    Quote Quote  
  26. Member
    Join Date
    Jun 2007
    Location
    Canada
    Search Comp PM
    Adjusting the black levels, etc

    ImageReader("C:\collorfix0000.png")
    converttoyv12(interlaced=false)
    tweak(-40,2.5,-64,1.28,coring=false)
    deen("a2d",7,0,30)
    Image Attached Thumbnails Click image for larger version

Name:	TestColor1.png
Views:	151
Size:	1,014.7 KB
ID:	2770  

    Quote Quote  
  27. MrJacobAngle, as you've discovered, you shouldn't base all your corrections on one particular frame. It's always possible that that frame isn't representative of the entire video. Not every shot has full black or full light. You should look at a variety of shots to determine the nature of the problems with a particular video. And even then, VCRs often have automatic adjustments that may change (and not necessarily be right) depending on the content.
    Quote Quote  
  28. I also have this problem that, when I try to reduce the noise i loose many details...

    Does anyone know how this guy, could reduce the noise but still keeping the sharpness video?
    (Link to his video) http://www.youtube.com/watch?v=3pZzY3p6kJc


    How could I get my video to look something like this?
    Last edited by MrJacobAngle; 24th Jul 2010 at 08:22.
    Quote Quote  
  29. Originally Posted by MrJacobAngle View Post
    Does anyone know how this guy, could reduce the noise but still keeping the sharpness video?
    Why don't you ask him? He posted several MJ threads here. Search for user "kopmjj"
    Quote Quote  
  30. He doesn't want to share his settings for his work, he'll only share what programs he have used. That's why I'm asking for your help guys.
    Last edited by MrJacobAngle; 24th Jul 2010 at 11:06.
    Quote Quote  



Similar Threads

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