主题:[讨论]如何读取raw格式图像
请问怎么读取raw格式图像呢?我使用下面语句出错
[mssim ssim_map] = ssim_index('lena1.raw', 'lena.raw');
??? Error using ==> imread
Unable to determine the file format.
的然后吧这个raw图像使用photeshop转成bmp格式图像后,使用下面的语句就正确了
>> [mssim ssim_map] = ssim_index('lena1.bmp', 'lena.bmp');
有没有什么方法直接读取这个raw格式的图像呢 ??
[mssim ssim_map] = ssim_index('lena1.raw', 'lena.raw');
??? Error using ==> imread
Unable to determine the file format.
的然后吧这个raw图像使用photeshop转成bmp格式图像后,使用下面的语句就正确了
>> [mssim ssim_map] = ssim_index('lena1.bmp', 'lena.bmp');
有没有什么方法直接读取这个raw格式的图像呢 ??