영상 데이터의 속성

yeoni·2023년 6월 28일
0

opencv

목록 보기
4/12
  • OpenCV는 영상 데이터를 numpy.ndarray로 표현
  • ndim: 차원수. len(img.shape)과같음.
  • shape: 각 차원의크기. (h, w) 또는(h, w, 3)
  • size:전체 원소 개수
  • dtype:원소의 데이터타입. 영상 데이터는 uint8.
  • 그레이 스케일 영상: cv2.CV_8UC1 → numpy.uint8, shape = (h, w)
  • 컬러 영상: cv2.CV_8UC3 → numpy.uint8, shape = (h, w, 3)
  • OpenCV 영상 데이터 자료형과 NumPy 자료형
print('type(img1):',type(img1)) #type(img1):<class'numpy.ndarray'>
print('img1.shape:',img1.shape) #img1.shape:(480,640)
print('img2.shape:',img2.shape) #img2.shape:(480,640,3)
print('img2.dtype:',img2.dtype) #img2.dtype:uint8

Reference
1) 제로베이스 데이터스쿨 강의자료

profile
데이터 사이언스 / just do it

0개의 댓글