필터 지우기
필터 지우기

Help me how can identify intensity for each wavelength

조회 수: 1 (최근 30일)
swetha Derangula
swetha Derangula 2017년 8월 1일
편집: swetha Derangula 2017년 8월 5일
I have 30 RGB images, how can I identify each band intensity?

채택된 답변

Ramanuja Jagannathan
Ramanuja Jagannathan 2017년 8월 4일
I believe by band intensity you mean to separate R,G,B components from the image and get individual intensities. To do that, get individual 2-D matrices from the 3-D matrix. So, if 'img' is a variable containing the color image data.
R = img(:,:,1);
G = img(:,:,2);
B = img(:,:,3);
Hope this is what you are looking for.
  댓글 수: 1
swetha Derangula
swetha Derangula 2017년 8월 5일
편집: swetha Derangula 2017년 8월 5일
hello sir
Thanks for your suggestions! For Individual will prefer threshold, histogram etc.. I have different wavelengths images like 400nm to 700nm, how can I find out intensity for each wavelength , I will share you sample image for your reference
Thank you

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by