Python convert .dcm to .png, images are too bright

做~自己de王妃 提交于 2020-02-24 11:14:45

问题


I have to convert some files which come by default as .dcm to .png, I've found some code samples to achieve that around here but the end results are too bright. Could anybody have a look at this, please?

 def convert_to_png(file):
    ds = pydicom.dcmread(file)

    shape = ds.pixel_array.shape

    # Convert to float to avoid overflow or underflow losses.
    image_2d = ds.pixel_array.astype(float)

    # Rescaling grey scale between 0-255
    image_2d_scaled = (np.maximum(image_2d,0) / image_2d.max()) * 255.0

    # Convert to uint
    image_2d_scaled = np.uint8(image_2d_scaled)

    # Write the PNG file
    with open(f'{file.strip(".dcm")}.png', 'wb') as png_file:
        w = png.Writer(shape[1], shape[0], greyscale=True)
        w.write(png_file, image_2d_scaled)

I've tweaked around the code but nothing seems to work.

This is how the actual thing looks like as dicom and on the right side is the result of running this code


回答1:


Some DICOM datasets require window width/level rescaling of the original pixel intensities (via the (0028,1050) Window Center and (0028,1051) Window Width elements in the VOI LUT Module) in order to reproduce the way they were "viewed".

The most recent pydicom release (v1.4) has a function apply_voi_lut() for applying this windowing:

from pydicom import dcmread
from pydicom.pixel_data_handlers.util import apply_voi_lut

ds = dcmread(file)
if 'WindowWidth' in ds:
    print('Dataset has windowing')

windowed = apply_voi_lut(ds.pixel_array, ds)

# Add code for rescaling to 8-bit...

Depending on the dataset type you may need to use apply_modality_lut() beforehand.




回答2:


A .dcm image appears to have a range of both brightness and contrast when analyzing a particular image. The reason it may look a bit bright in your case is that you only selected a particular view of the image.

To make the image darker, it looks like you'd just need to increase your denominator value:

threshold = 500 # Adjust as needed
image_2d_scaled = (np.maximum(image_2d, 0) / (np.amax(image_2d) + threshold)) * 255.0

This would ensure that some pixels aren't glaring bright.



来源:https://stackoverflow.com/questions/60219622/python-convert-dcm-to-png-images-are-too-bright

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!