Search found 4 matches
- 2011-11-20T16:14:04-07:00
- Forum: Users
- Topic: Coloured YUV / YCbCr / YPbPr chroma components
- Replies: 6
- Views: 19959
Re: Coloured YUV / YCbCr / YPbPr chroma components
Impressive. I think I have to learn a lot more to understand color spaces as well as IM. Many thanks for your help.
- 2011-11-20T14:34:50-07:00
- Forum: Users
- Topic: Coloured YUV / YCbCr / YPbPr chroma components
- Replies: 6
- Views: 19959
Re: Coloured YUV / YCbCr / YPbPr chroma components
As you can see at the Wikipedia page http://en.wikipedia.org/wiki/YUV the "colour" is calculated from the RGB. If I want to colorize I need to know the RGB values of each pixel, calculate the UV channels and write to a file. JPEG uses a similar formula. As IM "knows" how it works, I thougth there ...
- 2011-11-20T01:45:34-07:00
- Forum: Users
- Topic: Coloured YUV / YCbCr / YPbPr chroma components
- Replies: 6
- Views: 19959
Re: Coloured YUV / YCbCr / YPbPr chroma components
do you want somehow to false colorize each channel? Yes, that is what I want. The Y component is a grayscale image. That ist fine. But for the two croma components I want the coloured version, as in the links I provided. In separated RGB-channels this can be done with -colorize. But what to do in ...
- 2011-11-19T16:12:37-07:00
- Forum: Users
- Topic: Coloured YUV / YCbCr / YPbPr chroma components
- Replies: 6
- Views: 19959
Coloured YUV / YCbCr / YPbPr chroma components
Hi, With the following code I was able to convert a RGB image and split it into its YUV components. But I don not want the coloured version of the croma components and not the grayscale version. convert rgb.png -colorspace YUV -sampling-factor 4:2:2 -separate YUV.png Examples for what I want to do ...