Reading camera raw file
古いコメントを表示
Hi!
I am trying to import camera raw file in the Matlab and do further processing.
I read the article below and successfully convert the DNG file. http://blogs.mathworks.com/steve/2011/03/08/tips-for-reading-a-camera-raw-file-into-matlab/#comments
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
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Image Data についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!