Grayimage back to green
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello, how can I convert this grayimage back to an rgb with green fluorescence?
<<
>>
댓글 수: 0
채택된 답변
Image Analyst
2013년 12월 16일
편집: Image Analyst
2013년 12월 16일
blackImage = zeros(size(grayImage), 'uint8');
rgbImage = cat(3, blackImage, grayImage, blackImage);
Or you can use ind2rgb():
cmap = [zeros(256,1), (0:255)', zeros(256,1)]
rgbImage = uint8(ind2rgb(grayImage, cmap));
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!