From: Image Analyst on 9 Jul 2010 16:26 Kevin : Here's some additional code that may be useful to you: % Extract the individual color planes. redPlane = rgbImage(:, :, 1); greenPlane = rgbImage(:, :, 2); bluePlane = rgbImage(:, :, 3); % Rebuild an RGB image from separate component color channels rgbImage2 = cat(3, redPlane, greenPlane, bluePlane);
First
|
Prev
|
Pages: 1 2 Prev: color control Next: how to determine if the shortest distance from one point to a |