자바에 dcm2che 이런 라이브러리들이 많았는데 

파이썬에서는 괜찮은 라이브러리들이 별로 없는 줄 알았다가 찾게 된

mritopng !!

써보니 정말 간단하고 편리했다!

 

https://github.com/danishm/mritopng

 

GitHub - danishm/mritopng: A simple python module to make it easy to batch convert DICOM files to PNG images.

A simple python module to make it easy to batch convert DICOM files to PNG images. - GitHub - danishm/mritopng: A simple python module to make it easy to batch convert DICOM files to PNG images.

github.com

 

여기에 들어가서 다운받은 후, 아래 명령어로 설치하기!

python setup.py install

 

또는 아래 명령어로 설치!

pip install mritopng

 

convert_file이란 함수로 파일 이름 하나하나 짚어가면서 바꿀 수 있고,

convert_folder 함수로 폴더 안에있는 모든 dicom 파일을 (DCM) png로 바꿀 수 있다.

 

import mritopng

# Convert a since file
mritopng.convert_file('/home/user/DICOM/SCAN1', '/home/user/output.png')

# Convert a whole folder recursively
mritopng.convert_folder('/home/user/DICOM/', '/home/user/PNG/')

 

 

 

 

출처 : https://sosal.kr/

반응형

+ Recent posts