Pydicom package를 이용해 dcm 파일의 이미지와, 헤더 정보를 불러올 수 있다. import pydicom dcm_data = pydicom.read_file(file_path) 이미지 가져오기 - 이미지를 numpy array 형태로 가져온다. img = dcm_data.pixel_array - 추가로, CT image의 경우는 RescaleSlope, RescaleIntercept 정보를 가져와 pixel intensity 값을 조정해주어야 한다. - RescaleSlope는 각 pixel intensity값에 곱해주는 값, RescaleIntercept는 더해주는 값이라고 생각하면 된다. - pydicom의 get(attribute, default_value) method는 해당 att..