Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 채보
- ubuntu
- Selenium
- Visual Studio
- Numpy
- windows forms
- LIST
- Docker
- 핑거스타일
- label
- pytorch
- 프로그래머스
- C
- VS Code
- SSH
- error
- YOLO
- paramiko
- C#
- Python
- pandas
- 오류
- 컨테이너
- pip
- JSON
- mysql
- 기타 연주
- OpenCV
- C++
- Linux
Archives
- Today
- Total
기계는 거짓말하지 않는다
min, max 좌표 YOLO label format 변환 본문
xmin, ymin, xmax, ymax 좌표를 YOLO label 형식인 center x, center y, width, height 로 변환한다.
원본 이미지 해상도를 나누어 0~1 사이의 비율로 표현한다.
다른 형식으로 된 원본 좌표도 계산 식을 변경하여 응용 가능하다.
def get_object_params(i_width: int, i_height: int, xmin, ymin, xmax, ymax):
image_width = 1.0 * i_width
image_height = 1.0 * i_height
center_x = xmin + 0.5 * (xmax - xmin)
cneter_y = ymin + 0.5 * (ymax - ymin)
absolute_width = xmax - xmin
absolute_height = ymax - ymin
l_x = center_x / image_width
l_y = cneter_y / image_height
l_width = absolute_width / image_width
l_height = absolute_height / image_height
return l_x, l_y, l_width, l_height
# convert
center_x, center_y, width, height = get_object_params(i_width, i_height, xmin, ymin, xmax, ymax)
'AI' 카테고리의 다른 글
YOLO label to Labelme JSON label 변환 (0) | 2022.10.02 |
---|---|
YOLOv3 deepSORT KeyError: "The name 'net/images:0' (0) | 2022.07.01 |
활성화 함수(Activation Function) (0) | 2021.10.20 |
다층 퍼셉트론(Multi-Layer Perceptron) XOR (0) | 2021.10.18 |
Pytorch Multiclass Classification (0) | 2021.10.11 |
Comments