Converting CMYK JPG to RGB JPG
조회 수: 5 (최근 30일)
이전 댓글 표시
So if I detect a CMYK image I have a script written that attempts to convert the image to an RGB image so I can use imread on it (CMYK is not supported by imread for jpgs) and then tries to sharpen the image and convert it to black and white. Unfortunately the way I'm using applycform is not working and I keep getting an error that says "Cform structure is invalid for Named Color". Does anyone know anyway I might be able to resolve this or convert detect CMYK images to RGB images? All the Best!
inprof = iccread('USSheetfedCoated.icc');
outprof = iccread('sRGB.icm');
C = makecform('icc',inprof,outprof);
for i=1:numFiles2
info=imfinfo(fullfile(workingDirectory,imageFiles2(i).name));
if info.ColorType == 'CMYK'
fullfile(workingDirectory,imageFiles2(i).name) = applycform(fullfile(workingDirectory,imageFiles2(i).name),C);
end
frame = imread(fullfile(workingDirectory,imageFiles2(i).name));
frame = imsharpen(frame);
gray = rgb2gray(frame);
imwrite(gray,imageFiles2(i).name);
end
댓글 수: 0
채택된 답변
Carl
2017년 4월 3일
편집: Carl
2017년 4월 3일
Hi Jacob, the first input to the 'applycform' function needs to be a matrix of the image data, rather than the path to the file itself. You are passing in a character vector for that argument, so the function assumes that you are using a named color profile, and errors out accordingly since the encoding 'C' from 'makecform' does not match.
Since 'imread' does not support CMYK JPG files in the first place, this puts us in a tricky situation. What you really need to do, is perform the conversion before being able to work with it at all in MATLAB. There are third-party tools that would allow you to do this conversion.
댓글 수: 6
Soan Duong
2018년 8월 14일
Hi @Image Analyst, I used the imfinfo() function to read the information of my image. The ColorType is CMYK.
Besides, when I read the image by imread() function, and I got an error of JPEG images with CMYK colorspace are not currently supported.
The two reasons make me think the image is CMYK. I just receive images and do not know what program created them.
Abdurrahman Tosun
2019년 10월 5일
it is very easy to save this position. save to your image at paint program, after that convert to jpeg again by using paint program :) if this save you please let me know
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Color에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!