의료1 [파이썬]dicom 파일 비식별화 예제 (기본) 필요사항 : python 3.7이상 관련 패키지 설치 pip install pydicom pip install tqdm 코드 import os import pydicom #from tqdm import tqdm_notebook from tqdm import tqdm # get dcm_file_list def get_file_list() : try : list_path = [] list_file = [] list_full = [] for (path, _, file) in os.walk('.\\'): for each_file in file: if each_file[-4:] == '.dcm': list_path.append(path) list_file.append(each_file) list_full.appe.. 2020. 5. 28. 이전 1 다음