Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Matlab image processing using hex2dec to generate two block of colour

조회 수: 1 (최근 30일)
Peadar Conaghan
Peadar Conaghan 2019년 8월 11일
마감: MATLAB Answer Bot 2021년 8월 20일
Any solution on how to generate the desired image would be greatly appreciated. I'm fairly new to matlab and unsure how to go about this question.
Thanks.

답변 (1개)

Image Analyst
Image Analyst 2019년 8월 11일
Here's a start on your homework:
hexColor = '05A7AB'
redChannel = hex2dec(hexColor(1:2)) * ones(100, 100, 'uint8');
greenChannel = hex2dec(hexColor(3:4)) * ones(100, 100, 'uint8');
blueChannel = hex2dec(hexColor(5:6)) * ones(100, 100, 'uint8');
rgbImageTop = cat(3, redChannel, greenChannel, blueChannel);
imshow(rgbImageTop);
hexColor = '7d3608'
% etc.
% Combine top and bottom
rgbImage = [rgbImageTop; rgbImageBottom]
It should be easy for you to finish.

Community Treasure Hunt

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

Start Hunting!

Translated by