How to normalise the elements of R-B feature image to the range of 0-255

3 views (last 30 days)
Help Me..its urgent

Answers (1)

Image Analyst
Image Analyst on 21 Nov 2015
Try this:
% Extract the individual red, green, and blue color channels.
redChannel = rgbImage(:, :, 1);
greenChannel = rgbImage(:, :, 2);
blueChannel = rgbImage(:, :, 3);
rMinusB = 255 * mat2gray(double(redChannel) - double(blueChannel));

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!