필터 지우기
필터 지우기

How to convert the grayscale image into rgb image ????

조회 수: 2 (최근 30일)
bavani marimuthu
bavani marimuthu 2018년 1월 18일
답변: Walter Roberson 2018년 1월 18일
How to convert the grayscale image into rgb image ????
  댓글 수: 1
KSSV
KSSV 2018년 1월 18일
You should be having colormap for this. You need to have a color data of the concerned image.

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

답변 (2개)

KSSV
KSSV 2018년 1월 18일

Walter Roberson
Walter Roberson 2018년 1월 18일
RGB_Image = Grayscale_Image(:,:,[1 1 1]);
which is the same as
RGB_Image = repmat(Grayscale_Image, 1, 1, 3);

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by