Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Matlab 中打开 .xv 文件(Khoros 可视化图像)?
似乎它只适用于我提到的图像。(第一个 KB 包含一些其他相关信息,然后是图像数据)
function d = loadimg(fn) fid = fopen(fn,'r'); data = fread(fid); fclose(fid); d = data(1025:end); d = reshape(d, 64,64); end
谢谢您的帮助..