일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 토끼와 경주
- 순서대로방문하기
- DP
- 루돌프의반란
- 이진탐색
- 포탑부수기
- 코드트리빵
- dfs
- 삼성기출
- 슈퍼컴퓨터클러스터
- ARM
- 조합
- BFS
- 백준
- DenseDepth
- ICER
- 왕실의기사대결
- 싸움땅
- Calibration
- 시뮬레이션
- 소프티어
- ISER
- 마이크로프로세서
- 코드트리
- 3Dreconstruction
- 나무박멸
- 수영대회결승전
- 구현
- ros
- 마법의숲탐색
Archives
- Today
- Total
목록uint8 (1)
from palette import colorful_colors
PIL 라이브러리를 이용해서 uint8 -> int32로 바꾸기
uint8로 된 depth 이미지를 int32로 바꾸는 예시. cv2를 사용하면 자꾸 다시 uint8로 돌아가길래 PIL의 Image를 사용했다. from PIL import Image import numpy as np import matplotlib.pyplot as plt depth_image = np.array(Image.open("./depth_25.png")) depth_image[depth_image >= 0.00392] = 1 depth_image[depth_image < 0.00392] = 0 # 변환 depth_image_uint8 = depth_image depth_image_int32 = depth_image_uint8.astype(np.int32) print(depth_image_i..
연구활동/기타 TIP
2023. 5. 2. 19:59