I don't like converting to RGB as you lose quality when doing so. So I'm trying to find a YV12 alternative.
Remove Yellow by Adding Blue
The above looks near identical to each other.Code:RGBAdjust(1.0, 1.0, 1.05) Altenative: ColorYUV(off_u=3, off_v=0)
Unlike the above when I do the ColorYUV below it still seems a bit red to the RGBAdjust equivalent which didn't have any red.
Lower Green
How can I remove green without causing red to appear?Code:RGBAdjust(1.0, 0.95, 1.0) Altenative: ColorYUV(off_u=0, off_v=3)
Also how can I lower just red?
+ Reply to Thread
Results 1 to 3 of 3
-
-
Not if it's done correctly, and only when necessary during processing on the way to a YUV final product. The problem with this statement is this: all graphics source begins as RGB , and when it gets to your PC monitor or TV it becomes RGB again. Humans don't see in YUV. It would be more accurate to say that it's RGB-to-YUV that loses accuracy (note the use of "accuracy", not "quality") from the beginning. Each iteration of colorspace change loses more accuracy and more data content, just as each iteration of lossy encoding will compromise the data content.
They're not identical. The Blue channel in RGB contains only blue. The U channel in YUV contains some green (i.e., U is really blue creeping into cyan at one end and a pinch into purple at the other. Neither U nor V are "pure" blue or red. Green is not stored directly: your RGB display circuit gets green by subtracting blue and red from Y (luma).
To "lower just red", use RGB where each color channel contains its own chroma+luma data. In YUV, you manipulate green by manipulating red and blue (U and V). In RGB, you raise or lower a color without affecting the other channels. However, regardless of the colorspace, reducing one color makes the other colors more prominent, whether the values of the other colors have actually changed (YUV) or have remained the same (RGB).
How brightness and color interact in various color spaces is more confusing if you don't use histograms or 'scopes of some kind to show you what's happening. Eyeballs aren't all that accurate.Last edited by sanlyn; 23rd Aug 2013 at 05:05.
-
Last edited by jagabo; 23rd Aug 2013 at 11:03.
Similar Threads
-
Halo: Waypoint - Website - Red vs. Blue - MIA
By Simmons in forum Video Streaming DownloadingReplies: 3Last Post: 20th Nov 2011, 19:24 -
VHS capture : red/blue lines
By pastapesto in forum Capturing and VCRReplies: 0Last Post: 24th May 2010, 05:32 -
Interlaced YV12 chroma messes up between AviSynth and VirtualDub
By Neimo in forum Video ConversionReplies: 6Last Post: 21st Apr 2010, 19:30 -
Blue and Red Output
By PowerFalcon in forum Video ConversionReplies: 5Last Post: 22nd Jun 2009, 19:29 -
Bright red, blue?? help...
By waefwaeefwaefw in forum EditingReplies: 3Last Post: 12th Sep 2008, 20:31