1 Star 0 Fork 0

Roger-Luo/vrn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
readvol.m 406 Bytes
一键复制 编辑 原始数据 按行查看 历史
Aaron S. Jackson 提交于 2017-06-20 15:04 . Basically a working version.
function vol = readvol(path, dims)
% This method will parse the raw files dumped by the Lua script and
% return a 3D matrix of intensity values. This can then be
% visualised using isosurface.
if nargin < 2
dims = [ 192 192 200 ];
end
fid = fopen(path);
if fid < 0
error(['Failed to open ' path])
end
vol = fread(fid, 'uint8');
fclose(fid);
vol = reshape(vol, dims);
vol = permute(vol, [2 1 3]);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/roger521/vrn.git
git@gitee.com:roger521/vrn.git
roger521
vrn
vrn
master

搜索帮助