-
3D Image Crop컴퓨터 비젼(Computer Vision) 2021. 8. 8. 23:38
Empty space (pixels with 0 value) 제거함수
def cropped_images(images): min=np.array(np.nonzero(images)).min(axis=1) max=np.array(np.nonzero(images)).max(axis=1) return images[min[0]:max[0],min[1]:max[1],min[2]:max[2]]
'컴퓨터 비젼(Computer Vision)' 카테고리의 다른 글
Fast Interpolation (0) 2022.01.28 Conditional Random Field (0) 2021.12.08 의용 영상에서의 히스토그램 균일화 (1) (0) 2021.11.18 Tensorflow_io로 dicom 데이터 다루기 (0) 2021.08.09 이미지에서 black border 제거하기 (0) 2021.08.02