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
- 기타 연주
- JSON
- Linux
- ubuntu
- YOLO
- SSH
- Visual Studio
- pandas
- C++
- 오류
- Python
- LIST
- windows forms
- 명령어
- Selenium
- C
- 핑거스타일
- OpenCV
- C#
- paramiko
- Docker
- pip
- Numpy
- error
- label
- VS Code
- pytorch
- 프로그래머스
- mysql
- 채보
Archives
- Today
- Total
목록object crop (1)
기계는 거짓말하지 않는다
YOLO 텍스트 라벨을 이용하여 Object Crop 이미지 저장
YOLO 텍스트로 된 라벨 bbox를 이용하여 object들을 crop 하여 이미지로 저장하는 코드이다.확장자나 경로는 사용자에 맞게 바꿔야 한다.이미지, 라벨 이름의 짝과 개수가 맞는지는 코드 실행 전 검사하여야 한다.import cv2import osimport globdef get_x_y_points(point1_x, point1_y, point2_x, point2_y): xmin, ymin, xmax, ymax = 0, 0, 0, 0 if point1_x point2_x and point1_y point2_y: xmin = point1_x ymin = point2_y xmax = point2_x ymax = point1_y ..
AI
2024. 6. 12. 22:26