Hi,
First off i'm completely new to this CHDK. I just came across it today and Installed it. I was just wondering if it would be possible to display a single color plane on the camera display from an image or video, rather than the RGB composite image. Or if its possible to display the addition of two color planes on the display. What I'd like to do is image processing, pixel by pixel
Also would it be possible to write the single color plane to the SD card rather than the RGB image?
By this I mean that
if we define a pixel as P(x,y)[R/G/B] (R - Red, G - Green, B - Blue) where P(1,1)[R] is the red pixel value at location x = 1, y =1;
What i'd like to do is set something like
Pnew(1,1)[R] = P(1,1)[R]+P(1,1)[ B];
Pnew(1,1)[G] = 0;
Pnew(1,1)[ B] = 0;
would this be possible?