Normalizing pixel colours of an RGB image

9 ビュー (過去 30 日間)
Riccardo Rossi
Riccardo Rossi 2023 年 5 月 27 日
コメント済み: Image Analyst 2023 年 5 月 27 日
Hello,
I need to normalize an RGB image by replacing each channel (RED, GREEN and BLUE) of each pixel with the following values:
RED=RED/(RED+GREEN+BLUE)
GREEN=GREEN/(RED+GREEN+BLUE)
BLUE=BLUE/(RED+GREEN+BLUE)
How can I do it? Thank you so much!
  3 件のコメント
Riccardo Rossi
Riccardo Rossi 2023 年 5 月 27 日
Hi, I am reading the image into Matlab as a 3888x2592x3 uint8.
Image Analyst
Image Analyst 2023 年 5 月 27 日
If that Answer solves your original question, then could you please click the "Accept this answer" link to award the answerer with "reputation points" for their efforts in helping you? They'd appreciate it. Thanks in advance. 🙂 Note: you can only accept one answer (so pick the best one) but you can click the "Vote" icon for as many Answers as you want. Voting for an answer will also award reputation points.

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

採用された回答

DGM
DGM 2023 年 5 月 27 日
inpict = imread('peppers.png'); % uint8
inpict = im2double(inpict); % unit-scale float
outpict = inpict./sum(inpict,3); % all at once
imshow(outpict) % done

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by