如何将 RGB 图像转换为亮度图像并将图像存储为 Matlab 中的 .raw 文件

How to convert RGB image to Luminance image and store the image as .raw file in Matlab

我正在尝试将 RGB 图像转换为亮度图像并将其另存为 .raw 图像以在其他软件中使用。我正在使用以下代码

m = imread('20x20-alpha1-1.jpg');
out = zeros(1942,2588);
for i=1:1942
   for j=1:2588
    out(i,j) = 0.2126*m(i,j,1) + 0.7152*m(i,j,2) + 0.0722*m(i,j,3);
   end
end
fileID = fopen('20x20-alpha1-1.raw');
fwrite(fileID,out);
fclose(fileID);

但是,当我尝试使用 IrfanViewer 打开图像时,据说该文件已损坏。这是我的代码中的问题吗?如果是这样,我如何将此图像转换为亮度图像并保存? 谢谢:)

在这种情况下,无需处理 .raw 文件。改写一个 tiff 文件:

imwrite(out,'20x20-alpha1-1.tiff','tiff')