Reading camera raw file

Hi!
I am trying to import camera raw file in the Matlab and do further processing.
After that,I applied the code below to the file,as the article mentioned.
info = imfinfo('books.dng')
info.SubIFDs{1}
warning off MATLAB:tifflib:TIFFReadDirectory:libraryWarning
t = Tiff('books.dng','r');
offsets = getTag(t,'SubIFD');
setSubDirectory(t,offsets(1));
cfa = read(t);
close(t);
The warning below is come out and the 'cfa'file contain nothing.
Warning: JPEGLib: Must downscale data from 16 bits to 8.
Warning: JPEGPreDecode: Improper JPEG strip/tile size, expected 256x256, got 128x256.
I tried raw file from Nikon D40x and Sony Nex-3, also cannot get any improve.
What is the problem?
Thank you.
Andrew Tam

2 Kommentare

Jurgen
Jurgen am 27 Apr. 2013
So your file is also called books.dng right? Then what is the output of imfinfo('books.dng')?
tam
tam am 5 Jul. 2013
Thanks for viewing, Thomas Stone's answer solve the problem

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Thomas Stone
Thomas Stone am 5 Jul. 2013

1 Stimme

I had the same problem, but fixed by making sure the image was uncompressed. If you are using Adobe DNG converter make sure the "compatibility" is set to custom, with "Uncompressed" ticked.

1 Kommentar

tam
tam am 5 Jul. 2013
Thanks!!! I successfully crack the file to bayer array. Now I can buy a super zoom DC and use Matlab to process its image, try to beat photo from DSLR on rookie's hand. Very thanks!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by