채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2018년 6월 10일
편집: KALYAN ACHARJYA 2018년 6월 10일

0 개 추천

%Do the required operation (filtered as per your question) and plot (with " hold on" a statement) in the respective plot, your question having three plot in each graph.

I=imread('flower.jpg');
im_r=I(:,:,1);
im_g=I(:,:,2);
im_b=I(:,:,3);
subplot(311),plot(mean(im_r),'r','linewidth',2);
subplot(312),plot(mean(im_g),'g','linewidth',2);
subplot(313),plot(mean(im_b),'b','linewidth',2);

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Images에 대해 자세히 알아보기

질문:

2018년 6월 10일

댓글:

2018년 6월 10일

Community Treasure Hunt

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

Start Hunting!

Translated by