How to normalise the elements of R-B feature image to the range of 0-255
5 ビュー (過去 30 日間)
古いコメントを表示
Help Me..its urgent
0 件のコメント
回答 (1 件)
Image Analyst
2015 年 11 月 21 日
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));
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Segmentation and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!