该程序决定不对DICOM PYTHON进行分段

时间:2019-02-27 08:38:03

标签: python dicom threshold segment

我正在使用Python,正在阅读 DICOM 系列。我按阈值进行细分,效果很好。问题是程序每11个切片说分段为零。我已将程序缩小为最小表达式,但仍然无法正常工作。我决定对循环中出现问题的切片进行细分,并继续为我提供零值。 (我附上代码。)谁能告诉我这是怎么回事?

for i in range(len(images_path)):
   path_more_image=folder_path+"/"+images_path[i]
   im.append(dicom.dcmread(path_more_image))
   im1.append(np.where(im[i].pixel_array>=2800,1,0))#segmentación por threshold binarizamos los datos

I also attach the image with the amount of "Ones" of each slice

0 个答案:

没有答案