使用PIL(PILLOW)Python库显示Dicom图像

问题描述 投票:0回答:1

我正在尝试使用以下代码读取和显示DICOM(.dcm)图像:-

import pydicom as dicom
import numpy as np
from PIL import Image, ImageEnhance, ImageOps
from PIL.ImageQt import ImageQt

def display_dicom_images(self, folder_Path):
    try:
        # Image parameters
        image_width = 382
        image_height = 382

        image_depth = 3
        self.total_images_in_folder = len(glob.glob1(folder_Path,"*"))

        # Select the center image for display
        self.current_image_number = round(self.total_images_in_folder / 2)
        self.display_number = self.current_image_number

        image_dtype = np.uint8
        pixel_array = np.ndarray([self.total_images_in_folder, image_height, image_width, image_depth]).astype(image_dtype)
        # load images here, once better MR images are acquired
        for image_index in range(0, self.total_images_in_folder):
            # for DICOM
            image_path = folder_Path + "/" + str(image_index) + ".dcm"

            scan_image = dicom.dcmread(image_path)
            scan_image = scan_image.pixel_array.astype(image_dtype)

            pixel_array[image_index, :scan_image.shape[0], :scan_image.shape[1], :scan_image.shape[2]] = scan_image

        return pixel_array

但出现错误:-

IndexError('元组索引超出范围',)

我正在使用枕头python库获取图像。

python python-3.x python-imaging-library dicom pydicom
1个回答
1
投票

您怎么知道scan_image.shape的长度为3? MR图像should only be monochrome,它将使image_depth = 1scan_image.shape的长度等于2。

C.8.3.1.1.3光度解释

枚举值:

  • MONOCHROME1
  • MONOCHROME2
© www.soinside.com 2019 - 2024. All rights reserved.