Hi Doug,
I played around with the colour blind test here: Ishihara. I can't see anything, even the one that red/green colour blinds are supposed to see. My wife could see everything.
Then I tried Color Arrangement Test and was rated as severely colour blind. So I tried it with my sunglasses on and was told I am not colour blind at all! Back to the Ishihara test with the sunglasses and I still couldn't see anything. So the sunglasses do provide some correction.
Here is your code with a manipulate for the red, green, and blue components.
tab1 = Table[{x, y}, {x, 100}, {y, 100}];
tab2 = tab1;
cbTest[r_, g_, b_] :=
(For[i = 1, i <= 100, i++,
For[j = 1, j <= 100, j++,
tab2[[i, j]] = {RandomReal[{RandomReal[], 1.0}],
RandomReal[{RandomReal[], 1.0}],
RandomReal[{RandomReal[], 1.0}]}]]
For[i = 47, i <= 53, i++,
For[j = 1, j <= 100, j++,
tab2[[i, j]] = {RandomReal[{RandomReal[], r}],
RandomReal[{RandomReal[], g}], RandomReal[{RandomReal[], b}]}]]
For[i = 1, i <= 100, i++,
For[j = 47, j <= 53, j++,
tab2[[i, j]] = {RandomReal[{RandomReal[], r}],
RandomReal[{RandomReal[], g}], RandomReal[{RandomReal[], b}]}]]
Image[tab2, ImageSize -> {400, 400}])
Manipulate[cbTest[r, g, b],
{{r, 1.0}, 0.0, 1.0}, {{g, 1.0}, 0.0, 1.0}, {{b, 1.0}, 0.0, 1.0}]
I can start to see the cross with red at 0.4 and the others at 1.0,
but with my sunglasses on, 0.74
I can start to see the cross with green at 0.875 and the others at 1.0.
I can start to see the cross with blue at 0.833 and the others at 1.0.
Are you colour blind? If so, what values do you get?
See attached notebook for code.
Eric
Attachments: