I tried to read Dicom image, but there is a problem which is cannot reshape array of size 129024 into shape (576,448)
My code:
import matplotlib.pyplot as plt
import pydicom
filename = 'data/train/IM-0001-0001.dcm'
ds = pydicom.dcmread(filename)
plt.imshow(ds.pixel_array)
How to solve this problem?