How to find maximum value among R,G,B channels in the same indices?

2 次查看(过去 30 天)
I want to find the maximum of R,G,B in the same indices But it shows some error with max function.Please help me out

采纳的回答

ES
ES 2017-8-3
A = imread('thank-you.jpg');
[iRows, iColumns, ~] = size(A);
for iLoop1=1:iRows
for iLoop2=1:iColumns
B(iLoop1, iLoop2) = max(A(iLoop1, iLoop2, :));
end
end

更多回答(1 个)

ES
ES 2017-8-3
I dont know any direct way, but you can run a loop on the length and breadth of the image matrix to find the max of R, G, B at each pixel.
  2 个评论
lakshmi prabha
lakshmi prabha 2017-8-3
l=size(A); for i=1:l(1) for j=1:l(2) a=A(i,j,1); b=A(i,j,2); c=A(i,j,3); C1=max(max(a,b),c); end end This is the code I used But it didn't work.Can you rectify it

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Image Segmentation and Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by