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
- label
- Linux
- pandas
- VS Code
- Selenium
- LIST
- Python
- OpenCV
- Docker
- 채보
- pytorch
- 프로그래머스
- YOLO
- 기타 연주
- ubuntu
- Numpy
- windows forms
- C
- error
- C#
- 오류
- 명령어
- 핑거스타일
- JSON
- Visual Studio
- pip
- C++
- SSH
- paramiko
- mysql
Archives
- Today
- Total
기계는 거짓말하지 않는다
YOLO label 텍스트 classid 제외 본문
classid, x center, y center, width, height 형식의
YOLO label 텍스트 파일의 특정 classid를 제외해야 하는 경우
import os
import glob
import datetime
import time
# YOLO dataset 구조 형식일 경우
dir_root_path = "D:/Datasets/yolo_split_dataset/labels/"
sub_dir_name_list = ["train", "val"]
# 제외할 classid
skip_classid_list = ["2", "5", "9"]
start_time = time.time()
for sub_dir_name in sub_dir_name_list:
label_path_list = glob.glob(os.path.join(dir_root_path + sub_dir_name, "*.txt"))
count = 0
print(f"{sub_dir_name} label")
for label_path in label_path_list:
new_contents = ""
with open(label_path, "r") as f:
lines = f.readlines()
for line in lines:
line_split = line.split(" ")
if line_split[0] in skip_classid_list:
continue
new_contents += (" ".join(line_split))
with open(label_path, "w") as f:
f.write(new_contents)
count += 1
print("complete", count)
print(f"Total Time: {datetime.timedelta(seconds=int(time.time() - start_time))}")
'AI' 카테고리의 다른 글
Labelme JSON data label 별 object 개수 (0) | 2022.10.28 |
---|---|
YOLO label 텍스트 object 개수 (2) | 2022.10.23 |
YOLO label 텍스트 classid 변경 (0) | 2022.10.14 |
YOLO label to Labelme JSON label 변환 (0) | 2022.10.02 |
YOLOv3 deepSORT KeyError: "The name 'net/images:0' (0) | 2022.07.01 |
Comments