My teacher has assigned me to work combine RGB channels and create a GR image, whose results are like a negative image as shown here:
I have tried the following code:
GR1=(double(100*green_channel/1+red_channel+blue_channel));
GR2=(double(256/1+red_channel+blue_channel+green_channel));
GR=(double(GR1.*GR2));
But this does not produce the desired results.