자바에 dcm2che 이런 라이브러리들이 많았는데
파이썬에서는 괜찮은 라이브러리들이 별로 없는 줄 알았다가 찾게 된
mritopng !!
써보니 정말 간단하고 편리했다!
https://github.com/danishm/mritopng
여기에 들어가서 다운받은 후, 아래 명령어로 설치하기!
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/
반응형
'[ 개발 ] > Python' 카테고리의 다른 글
[Python] 파이참에서 실행 & 설치 파일 만들기 (2) | 2022.06.17 |
---|---|
[Python] ''.join(iterable)함수 정리 (0) | 2022.03.30 |
[Python] *args & **kwargs 정리 (0) | 2022.03.26 |
[Python] PyQt5 .ui파일을 파이썬(.py)파일로 변환 (0) | 2021.05.04 |
[Python] PyQt5와 pyinstaller를 사용해 파이썬 실행 파일(exe) 만들기 (0) | 2021.05.04 |