我使用scipy.ndimage.zoom()来调整表示遮罩3D ndarray的大小。
resize_img = itpl.zoom(img, (resize[0] / img.shape[0], resize[1] / img.shape[1], resize[2] / img.shape[2]), mode='nearest')
但结果不只是1和0。
我也不知道为什么。
7nbnzgx91#
我认为你的问题是最近的仍然是做一个3阶插值。添加参数order=0与模式='nearest',我认为你的问题是固定的:)
1条答案
按热度按时间7nbnzgx91#
我认为你的问题是最近的仍然是做一个3阶插值。添加参数order=0与模式='nearest',我认为你的问题是固定的:)