Reading CR2 (Canon RAW) images into MATLAB

조회 수: 18 (최근 30일)
msij
msij 2017년 3월 24일
댓글: DGM 2024년 4월 23일
Hi,
I was wondering if anyone could help me to read in some CR2 images into MATLAB?
I have tried just using imread but it just reads the image as an 8 bit. I can used Adobe's DNG converter as people have suggested but would rather have the whole code automated. Other questions like this are a few years old so was hoping some people had new suggestions.
Thanks!

답변 (2개)

Arvind Narayanan
Arvind Narayanan 2017년 3월 28일
It is possible to read CR2 data into MATLAB with the normal workflow for reading images. You can try the following sample code snippet:
A=imread('sample.CR2');
imshow(A);
imwrite(A,'filename.jpg');
  댓글 수: 2
Steffen B. Petersen
Steffen B. Petersen 2019년 5월 4일
The code below is essentially what Arvind proposes :
the red channel of the image displayed (an astronomical image with a few high intensity stars) is a correct representation of what MATLABN displayes - but clearly there is a problem with the lowest intensity levels of the image. It appears as if MATLAB is utilizing lossy compression schemes, which in apprearance looks like JPEG compression.
I would like to know how to swicth off the compression, if anybody knows.matlab_cr2.jpg
[myfile,mypath]=uigetfile({'*.cr2'});
>> mygray2=myim(:,:,1);
>> mytiny2=mygray2(2000:2500,3300:3800);
>> figure(3);
>> imshow(mytiny2,[10 30]);
DGM
DGM 2024년 4월 23일
A CR2 file is structured like a TIFF. It contains multiple images, both compressed and uncompressed. Two of these images are JPG, only one of which is lossless (the CFA data). When picked up by imread(), it looks like it's just treating the image as a TIFF and reading the first IFD, which would be the lossy preview JPG.
Either use raw2rgb() to get a demosaiced RGB image from the CFA data, or use rawread() to get the CFA data to reconstruct the image yourself.
Otherwise, consider these resources.
Format information (see the resources at the end): http://lclevy.free.fr/cr2/
Processing RAW images in MATLAB: https://rcsumner.net/raw_guide/RAWguide.pdf
That guide PDF is fairly old, but the workflow it describes is essentially what you're avoiding by using raw2rgb().

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


Dinesh Iyer
Dinesh Iyer 2024년 4월 22일

카테고리

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