How to extract RGB information from an segmented image excluded white background.

2 ビュー (過去 30 日間)
Hi, I am working on project about image processing. I would like to know about how to extract the RGB information from an segmented image excluded the white background. I only need the RGB value for my region of interest, and I don't want the white pixels RGB value to exist in my data file. Thank you.

採用された回答

Image Analyst
Image Analyst 2017 年 7 月 22 日
Get a mask of where white is, then extract pixels from where it's not white
% Extract the individual red, green, and blue color channels.
redChannel = rgbImage(:, :, 1);
greenChannel = rgbImage(:, :, 2);
blueChannel = rgbImage(:, :, 3);
whiteMask = redChannel == 255 & greenChannel == 255 & blueChannel == 255;
redValues = redChannel(~whiteMask);
greenValues = greenChannel(~whiteMask);
blueValues = blueChannel(~whiteMask);
  2 件のコメント
Leow Bin
Leow Bin 2017 年 7 月 22 日
Thanks for your kindly help~that's the exactly what I needed.
Image Analyst
Image Analyst 2017 年 7 月 22 日
Note, if white is just bright areas, then you don't have to use just pure 255, it can be any values above some intensity that you consider "white", so for example you can do:
whiteMask = redChannel >= 200 & greenChannel >= 225 & blueChannel >= 230;

サインインしてコメントする。

その他の回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2017 年 7 月 22 日
編集済み: KALYAN ACHARJYA 2017 年 7 月 22 日
You can directly calculate the R G B from the image, Apply If R=255, G=255, B=255, then ignore the region else ...do your program. Similar Image is needed for more clarification.
Please note: I am beginner in Matlab
  1 件のコメント
Leow Bin
Leow Bin 2017 年 7 月 22 日
Hi, I am understand about the concept just I don't know how to implement in matlab syntax. Thank you anyway.

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by