![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/331328/image.png)
Image from RGB to another one
25 次查看(过去 30 天)
显示 更早的评论
I have two Questions :
•1. Read the RGB image?
•2. Convert RGB color image into CMYK color image?
I solve the first one
figure
image_mat = imread('color.jpg');
imshow(image_mat)
but How can i solve the second one ?
0 个评论
采纳的回答
Image Analyst
2020-7-13
Did you even try the function in the link KSSV gave you? Because I did, and the attached code worked just fine.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/331328/image.png)
8 个评论
Image Analyst
2020-7-14
As I showed you, you can use imshow() to show the component channels. And as Walter and I have both said, displaying 3 or 4 of the cmyk channels as an RGB image makes little sense but if you want, you can obtain that gibberish by extracting the three channels you want into an rows-by-columns-by3 image and using imshow(). For more sophisticated ways of converting a multi-channel color image into a 3-channel RGB image, see the attached paper.
更多回答(1 个)
KSSV
2020-7-12
10 个评论
Walter Roberson
2020-7-13
image_mat = imread('baby.jpg');
inprof = iccread('srgb.icm'); outprof = iccread('USSheetfedCoated.icc');
cform = makecform('icc', inprof, outprof); %conversion from SRGB of a CRT to CMYK of a particular device
image_cmyk = applycform(image_mat, cform);
imshow(image_cmyk(:,:,1:3))
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!