提示 " Allocation of XXXXXXXX exceeds 10% of system memory."怎么办?
复现图像配准的SOTA算法VoxelMorph时,很可能提示 " Allocation of XXXXXXXX exceeds 10% of system memory."
此时怎么办呢?
解决方案:
进入CMD命令行
输入“D:”,回车
输入“cd D:\ImageRegisteration\Code\voxelmorph-master”,cd的位置为复现代码的根目录
pip install neuron
给NEURON的报错的文件里的第一行添加from __future__ import print_function # If code has to work in Python 2 and 3!
python3 D:\ImageRegisteration\Code\voxelmorph-master\src\register.py D:\ImageRegisteration\Code\voxelmorph-master\data\test_vol.nii.gz D:\ImageRegisteration\Code\voxelmorph-master\data\atlas_norm.nii.gz --out_img D:\ImageRegisteration\Code\voxelmorph-master\data\out.nii.gz --model_file ../models/cvpr2018_vm2_cc.h5
(注意,上面是python3,不是python。否则会报错)
运行后,可以看到data\下出现了out.nii.gz(所需结果)
- 点赞
- 收藏
- 关注作者
评论(0)