IT skill
-
nifti 영상 로드: import nibabel as nib import numpy as np # load nifti image img = nib.load(nifti_image_path) img_data = img.get_fdata() np.where 조건 1개 적용: # one condition modified_image = np.where((img_data 300), 0, img_data..
[python] np.where 사용법 (nifti 영상)nifti 영상 로드: import nibabel as nib import numpy as np # load nifti image img = nib.load(nifti_image_path) img_data = img.get_fdata() np.where 조건 1개 적용: # one condition modified_image = np.where((img_data 300), 0, img_data..
2019.10.07 -
# nifti 이미지 읽기 import nibabel as nib img = nib.load(이미지_경로) img_data = img.get_fdata() # nifti 이미지 저장하기 nii_img = nib.Nifti1Image(img_data, img.affine, img.header) nib.save(nii_img, 저장할_경로) # dicom 이미지 읽기 import pydicom img = pydicom.dcmread(이미지_경로) img_data = img.pixel_array() 도움이 되셨다면 아무 광고나 클릭 한 번 부탁드립니다👍
[python] nibabel, pydicom array 읽는 방법# nifti 이미지 읽기 import nibabel as nib img = nib.load(이미지_경로) img_data = img.get_fdata() # nifti 이미지 저장하기 nii_img = nib.Nifti1Image(img_data, img.affine, img.header) nib.save(nii_img, 저장할_경로) # dicom 이미지 읽기 import pydicom img = pydicom.dcmread(이미지_경로) img_data = img.pixel_array() 도움이 되셨다면 아무 광고나 클릭 한 번 부탁드립니다👍
2019.10.02 -
numpy.expand_dims는 차원을 확장하고 싶을 때 쓰는 함수이다. 보통 그레이스케일의 이미지에 1개의 채널을 추가해주거나 (128, 128) > (128, 128, 1) 배치를 정의하기 위해 사용한다. (128, 128, 1) > (1, 128, 128, 1) 인풋으로 array를 받는다. >>> import numpy as np >>> np.array([1,1]) array([1, 1]) >>> A = np.array([1,1]) >>> A.shape (2,) >>> np.expand_dims(A, axis=0) array([[1, 1]]) >>> np.expand_dims(A, axis=0).shape (1, 2) >>> np.expand_dims(A, axis=1).shape (2, 1) ..
[python] numpy.expand_dims / np.newaxisnumpy.expand_dims는 차원을 확장하고 싶을 때 쓰는 함수이다. 보통 그레이스케일의 이미지에 1개의 채널을 추가해주거나 (128, 128) > (128, 128, 1) 배치를 정의하기 위해 사용한다. (128, 128, 1) > (1, 128, 128, 1) 인풋으로 array를 받는다. >>> import numpy as np >>> np.array([1,1]) array([1, 1]) >>> A = np.array([1,1]) >>> A.shape (2,) >>> np.expand_dims(A, axis=0) array([[1, 1]]) >>> np.expand_dims(A, axis=0).shape (1, 2) >>> np.expand_dims(A, axis=1).shape (2, 1) ..
2019.09.30 -
pip install pandas pip install xlrd 엑셀 읽기 df = pd.read_excel('D:/test.xlsx') print(df) a1 a2 a3 a4 0 1 2 3 4 1 3 2 3 4 2 2 4 4 5 csv 읽기는 pd.read_csv 데이터프레임을 엑셀로 저장하기 df = pd.read_excel('D:/test.xlsx') df.to_excel('D:/test2.xlsx') csv로 저장하기는 df.to_csv 칼럼 출력하기 df = pd.read_excel('D:/test.xlsx') print(df.columns) Index(['a1', 'a2', 'a3', 'a4'], dtype='object') 열 지정하여 출력하기 df = pd.read_excel('D:/tes..
[python] pandas 정리pip install pandas pip install xlrd 엑셀 읽기 df = pd.read_excel('D:/test.xlsx') print(df) a1 a2 a3 a4 0 1 2 3 4 1 3 2 3 4 2 2 4 4 5 csv 읽기는 pd.read_csv 데이터프레임을 엑셀로 저장하기 df = pd.read_excel('D:/test.xlsx') df.to_excel('D:/test2.xlsx') csv로 저장하기는 df.to_csv 칼럼 출력하기 df = pd.read_excel('D:/test.xlsx') print(df.columns) Index(['a1', 'a2', 'a3', 'a4'], dtype='object') 열 지정하여 출력하기 df = pd.read_excel('D:/tes..
2019.07.22 -
cmd에 python은 되고 pip는 안될 때가 있다. 환경 변수에 Python폴더는 지정되어 있지만 Python\Scripts 폴더는 지정되어 있지 않을 경우 이 현상이 생길 수 있다. 제어판 > 시스템 및 보안 > 시스템 > 설정 변경 > 고급 > 환경 변수 > 시스템 변수 > Path 클릭 > 편집 > 찾아보기 에서 Python\Scripts 경로를 추가해준다. 설정이 잘 되었는지는 pip -V 명령어로 확인할 수 있다.
python pip 안될 때cmd에 python은 되고 pip는 안될 때가 있다. 환경 변수에 Python폴더는 지정되어 있지만 Python\Scripts 폴더는 지정되어 있지 않을 경우 이 현상이 생길 수 있다. 제어판 > 시스템 및 보안 > 시스템 > 설정 변경 > 고급 > 환경 변수 > 시스템 변수 > Path 클릭 > 편집 > 찾아보기 에서 Python\Scripts 경로를 추가해준다. 설정이 잘 되었는지는 pip -V 명령어로 확인할 수 있다.
2019.05.22 -
1. 필요한 파이썬 버전을 설치한다. https://www.python.org/downloads/ Download Python The official home of the Python Programming Language www.python.org 2. vsc에서 ctrl + shift + p를 누른 후 ext install ext를 치고 Extensions: Install Extensions 클릭 3. python을 검색하여 첫번째 박스를 클릭하여 install 4. 파이썬 환경변수 설정 제어판 > 시스템 및 보안 > 시스템 > 설정 변경 > 고급 > 환경 변수 > Path 클릭 > 편집 > 찾아보기 > python.exe 들어있는 폴더 선택 > 확인 5. 아래 주소에서 get-pip.py 다운로드 h..
visual studio code에서 python 가상환경 설정하기1. 필요한 파이썬 버전을 설치한다. https://www.python.org/downloads/ Download Python The official home of the Python Programming Language www.python.org 2. vsc에서 ctrl + shift + p를 누른 후 ext install ext를 치고 Extensions: Install Extensions 클릭 3. python을 검색하여 첫번째 박스를 클릭하여 install 4. 파이썬 환경변수 설정 제어판 > 시스템 및 보안 > 시스템 > 설정 변경 > 고급 > 환경 변수 > Path 클릭 > 편집 > 찾아보기 > python.exe 들어있는 폴더 선택 > 확인 5. 아래 주소에서 get-pip.py 다운로드 h..
2019.05.22