VideoHelp Forum




+ Reply to Thread
Results 1 to 21 of 21
  1. Hello Folks,
    Last summer on a trip I forgot to take my camera and I had to shoot with a Nikon Coolpix still camera which had its settings screwed up. Result is a number of clips where the dominant colour is blue. Almost everything has different tones of blue. Now I wish to "correct" these clips so that I can have other colours and the clips become as natural as possible. I am attaching one of the clips here as an example. Help from experts is appreciated.
    Image Attached Files
    Quote Quote  
  2. The chroma channels are completely flat, but the U channels is offset (hence the purple cast). So you're out of luck as far as automated correction is concerned, there are no colors there to restore. You can reduce it to pure greyscale by removing the U channel offset. The only way to get full color is to use colorizing software and paint each frame by hand.
    Quote Quote  
  3. Hi jagabo,
    I have full confidence in your diagnostics. I have Vegas Movie Studio Platinum 12. Using that can I remove the U channel offset and how? Then I will have to colorize using probably GIMP. Concerning colorization is it better to do it in this mode or in grey scale mode. Furthermore do you think I can use some scripting software like Frame Server to do the bulk part of the work.
    Quote Quote  
  4. Vegas doesn't work in YUV with it's filters, so you don't have access to U, or V channels directly. To make it "greyscale" you would lower the saturation to zero
    Quote Quote  
  5. Can that be done using Vdub?
    Quote Quote  
  6. In VirtualDub you can use the HSV or Greyscale filters. The latter works in YUV if the source is YUV. In AviSynth you want ColorYUV(off_u=-24) or Tweak(sat=0.0).
    Quote Quote  
  7. Member budwzr's Avatar
    Join Date
    Apr 2007
    Location
    City Of Angels
    Search Comp PM
    You can use a gradient to add some faux colorization. Easier than hand painting, but not as "good".

    Quote Quote  
  8. Banned
    Join Date
    Oct 2014
    Location
    Northern California
    Search PM
    Originally Posted by budwzr View Post
    You can use a gradient to add some faux colorization. Easier than hand painting, but not as "good".

    Hmm, is that a picture of Fukushima beach?

    I would keep in in proud black and white!
    Quote Quote  
  9. Well it can't be in the North America, because they don't wear speedos in the US of A , and it's too fricken cold in Canada

    Looks like aome Alien landscape budwzr
    Quote Quote  
  10. Hi budwzr and newpball. Firstly thanks a lot for those trials. Secondly can you tell me how you do that? I opened the clip in VirtualDub and tried to apply the HSV adust filter parameters but could not get any tangible results. How do you that please? Thirdly the answer is Cozumel Beach in Mexica.
    Quote Quote  
  11. Member budwzr's Avatar
    Join Date
    Apr 2007
    Location
    City Of Angels
    Search Comp PM
    Originally Posted by poisondeathray View Post
    Looks like aome Alien landscape budwzr
    Yeah, hahaha, just did a down-and-dirty example. I suppose if you take the time to get the coloring right it might be "usable".

    To the Ope: Its a multicolor gradient. A partially transparent colorized overlay is about the best way to describe it. It's not a panacea, but somewhat better than grayscale.

    You might be able to pass it off as an artistic effect. What you do is choose two or three colors that seem to "enhance" the shot and composite over the top.

    You can make that in PhoShop or any graphics software. Or maybe your NLE has a built-in tool. Most of them should. I'm using VegasPro.
    Last edited by budwzr; 9th Nov 2014 at 14:46.
    Quote Quote  
  12. Banned
    Join Date
    Oct 2014
    Location
    Northern California
    Search PM
    You could give it some cross processing look:

    DSCN1182 X.mp4

    Quote Quote  
  13. Member budwzr's Avatar
    Join Date
    Apr 2007
    Location
    City Of Angels
    Search Comp PM
    Originally Posted by newpball View Post
    You could give it some cross processing look
    Hahaha, yeah, a dream-state look. I like that. Maybe throw a moon in there for ambiance.

    Last edited by budwzr; 9th Nov 2014 at 14:57.
    Quote Quote  
  14. Originally Posted by SearchQuality View Post
    Hi budwzr and newpball. Firstly thanks a lot for those trials. Secondly can you tell me how you do that? I opened the clip in VirtualDub and tried to apply the HSV adust filter parameters but could not get any tangible results. How do you that please? Thirdly the answer is Cozumel Beach in Mexica.
    He created an image that was a gradient from blue at the top to green at the bottom. Then he replaced the colors in the video with the colors from the gradient. I don't think you can do that in VirtualDub. It's pretty easy in AviSynth:

    Code:
    AviSource("DSCN1182.AVI") 
    gradient=ImageSource("gradient.jpg").ConvertToYV12()
    MergeChroma(gradient)
    Original video (only greyscale information will be used):

    Click image for larger version

Name:	video.jpg
Views:	340
Size:	47.8 KB
ID:	28454

    Quick/dirty colors painted by hand:
    Click image for larger version

Name:	colors.jpg
Views:	319
Size:	16.2 KB
ID:	28455

    Colors overlaid onto original video:
    Click image for larger version

Name:	merged.jpg
Views:	405
Size:	49.6 KB
ID:	28456

    The HSV recommendation in VirtualDub was to convert the video to greyscale -- turn S(aturation) all the way down.
    Last edited by jagabo; 9th Nov 2014 at 17:01.
    Quote Quote  
  15. Member budwzr's Avatar
    Join Date
    Apr 2007
    Location
    City Of Angels
    Search Comp PM
    Magnificent! Mine looks like schitte now.
    Last edited by budwzr; 9th Nov 2014 at 18:00.
    Quote Quote  
  16. Nah, it's crap. But it should give the OP an idea what's he needs to do. It will takes forever with a paint program. It really needs to be done with specialized software that lets you mark objects and motion track. Even with the correct software it's a major undertaking.

    Deshaking the video first will make things a little easier.
    Quote Quote  
  17. Thanks folks. Now it is time to have a go at it. By the way it has been a couple of years since I used avisynth. Is there anywhere a good tutorial that you know?
    Quote Quote  
  18. This issue came up in the context of underwater footage a while ago. Someone discovered this tutorial for making the corrections in photoshop by copying and remapping one of the color channels. The same technique can be used for video in After Effects.

    (FWIW, I thought the results were too good to be true and was skeptical (to say the least) until I tried it myself. It does work.)

    https://www.youtube.com/watch?v=pFhrTQJg6MI
    Quote Quote  
  19. This issue came up in the context of underwater footage a while ago. Someone discovered this tutorial for making the corrections in photoshop by copying and remapping one of the color channels. The same technique can be used for video in After Effects.

    (FWIW, I thought the results were too good to be true and was skeptical (to say the least) until I tried it myself. It does work.)

    https://www.youtube.com/watch?v=pFhrTQJg6MI
    Is there tutorial for After effects I would love to try this technique on one of my videos that is captured in sephia mode
    Quote Quote  
  20. Originally Posted by mammo1789 View Post
    Is there tutorial for After effects I would love to try this technique on one of my videos that is captured in sephia mode
    The technique in After Effects would be identical to the one used in photoshop. However...

    In-camera sepia modes generally reduce the image to monochrome and then offset the channel balance so it goes a bit brown. In other words, you can't do it. There is no differential color information to recover.
    Quote Quote  
  21. Member racer-x's Avatar
    Join Date
    Mar 2003
    Location
    3rd Rock from the Sun
    Search Comp PM
    Many editors have Channel Mixer filters. If you're using Virtualdub, search for ChannelMixer and GradationCurves plugins.

    If the OP had some footage of a hot babe, I might attempt a color fix......
    Got my retirement plans all set. Looks like I only have to work another 5 years after I die........
    Quote Quote  
Visit our sponsor! Try DVDFab and backup Blu-rays!