フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How can i seperate the values for R, B,G and pass the values to a equation and plot the graph?

1 回表示 (過去 30 日間)
balajee J
balajee J 2013 年 4 月 19 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
i am getting values using
imshow strip1.tiff
vals = impixel
then i have to substitute the values of R , B , G in this equation
Ar = -log (Rs/ Rb)
Ag = -log (Gs/ Gb)
Ab = -log (Bs/ Bb)
and plot graph for RGB in one graph itself.

回答 (1 件)

Walter Roberson
Walter Roberson 2013 年 4 月 19 日
What are "Rs", "Gs", "Bs", "Rb", "Gb", "Bb" ?
R = vals(:,1);
G = vals(:,2);
B = vals(:,3);
  1 件のコメント
balajee J
balajee J 2013 年 5 月 2 日
Thanks for u'r answer. I am new to matlab and I need to plot the graph using obtained values of R, G & B.

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by