10 lines
236 B
Python
10 lines
236 B
Python
import SimpleITK as sitk
|
|
|
|
# 1. 读取原始的 CT 数据
|
|
raw_file_path = 'D:/Downloads/Z0_Y-0.4_800_1000_0.1_fz1Result0.raw'
|
|
|
|
image = sitk.ReadImage(raw_file_path, sitk.sitkFloat32)
|
|
|
|
print(image)
|
|
# sitk.WriteImage(image, raw_file_path)
|