在Matlab中读取DNG文件



我正在尝试从iphoneX读取dng文件。我阅读了链接https://blogs.mathworks.com/steve/2011/03/08/tips-for-reading-a-camera-raw-file-into-matlab/但错误消息是"引用不存在的字段"SubIFDs"。">

info=imfinfo(dng_file_path);
info.SubIFDs{1} %where the error pop up
tiffHandle=Tiff((dng_file_path),'r');
offsets=TiffHandle.getTag('SubIFD');
setSubDirectory(TiffHandle,offsets(1));
CFA=double(read(TiffHandle));

iphone中的DNG文件似乎经过了压缩(无损jpeg压缩(。尝试通过DNG Converter运行该文件,并将首选项设置为"未压缩"。然后在Matlab中尝试。

相关内容

  • 没有找到相关文章

最新更新