I am trying to understand what happens when I use this command
Code: Select all
convert rose: -channel R -separate separate_red.gif
As far as I understand it separates one channel which means the other two are set to
Code: Select all
0
However, if I separate a channel by setting the two others to 0, a white pixel (255,255,255) doesn't become white, it becomes a perfect Red (255,0,0). When I grayscale it then after using
Code: Select all
R*0.2126 + G*0.7152 + B*0.0722
The white background in the pictures I use however, always turns out white.
Where is my mistake?
Thanks!