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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
| import shutil
from pathlib import Path
import pandas as pd
from sklearn.model_selection import train_test_split
from tqdm import tqdm
ROOT_DIR = Path(__file__).resolve().parents[1] # ComputerVision
RAW_DIR = ROOT_DIR / "data" / "gwhd_2021"
IMAGE_DIR = RAW_DIR / "images"
CSV_PATH = RAW_DIR / "competition_train.csv"
OUT_DIR = ROOT_DIR / "dataset_gwhd"
DATA_YAML_PATH = ROOT_DIR / "gwhd.yaml"
TRAIN_RATIO = 0.8
CLASS_ID = 0
IMG_W = 1024
IMG_H = 1024
def make_dirs():
for split in ["train", "val"]:
(OUT_DIR / "images" / split).mkdir(parents=True, exist_ok=True)
(OUT_DIR / "labels" / split).mkdir(parents=True, exist_ok=True)
def find_image(image_name: str):
path = IMAGE_DIR / image_name
if path.exists():
return path
for ext in [".jpg", ".jpeg", ".png"]:
path = IMAGE_DIR / f"{image_name}{ext}"
if path.exists():
return path
return None
def parse_boxes_string(boxes_string):
boxes = []
if pd.isna(boxes_string):
return boxes
boxes_string = str(boxes_string).strip()
if boxes_string == "" or boxes_string.lower() == "no_box":
return boxes
for box_text in boxes_string.split(";"):
box_text = box_text.strip()
if not box_text:
continue
values = box_text.split()
if len(values) != 4:
continue
x1, y1, x2, y2 = map(float, values)
boxes.append((x1, y1, x2, y2))
return boxes
def xyxy_to_yolo(x1, y1, x2, y2, img_w, img_h):
x1 = max(0.0, min(img_w, x1))
y1 = max(0.0, min(img_h, y1))
x2 = max(0.0, min(img_w, x2))
y2 = max(0.0, min(img_h, y2))
w = x2 - x1
h = y2 - y1
if w <= 0 or h <= 0:
return None
cx = x1 + w / 2.0
cy = y1 + h / 2.0
return cx / img_w, cy / img_h, w / img_w, h / img_h
def main():
print("ROOT_DIR:", ROOT_DIR)
print("CSV_PATH:", CSV_PATH)
print("IMAGE_DIR:", IMAGE_DIR)
make_dirs()
df = pd.read_csv(CSV_PATH)
print("CSV columns:", list(df.columns))
print(df.head())
required_cols = ["image_name", "BoxesString"]
for col in required_cols:
if col not in df.columns:
raise RuntimeError(f"Required column missing: {col}")
image_names = df["image_name"].unique()
train_names, val_names = train_test_split(
image_names,
train_size=TRAIN_RATIO,
random_state=42,
shuffle=True,
)
split_map = {name: "train" for name in train_names}
split_map.update({name: "val" for name in val_names})
missing_images = 0
total_boxes = 0
for _, row in tqdm(df.iterrows(), total=len(df), desc="Converting"):
image_name = str(row["image_name"])
boxes_string = row["BoxesString"]
split = split_map[image_name]
src_img = find_image(image_name)
if src_img is None:
missing_images += 1
print("Missing image:", image_name)
continue
dst_img = OUT_DIR / "images" / split / src_img.name
shutil.copy2(src_img, dst_img)
label_path = OUT_DIR / "labels" / split / f"{src_img.stem}.txt"
boxes = parse_boxes_string(boxes_string)
lines = []
for x1, y1, x2, y2 in boxes:
yolo_box = xyxy_to_yolo(x1, y1, x2, y2, IMG_W, IMG_H)
if yolo_box is None:
continue
cx, cy, w, h = yolo_box
lines.append(f"{CLASS_ID} {cx:.6f} {cy:.6f} {w:.6f} {h:.6f}")
total_boxes += len(lines)
with open(label_path, "w", encoding="utf-8") as f:
f.write("\n".join(lines))
with open(DATA_YAML_PATH, "w", encoding="utf-8") as f:
f.write(
f"path: {OUT_DIR.as_posix()}\n"
"train: images/train\n"
"val: images/val\n\n"
"names:\n"
" 0: wheat_head\n"
)
print("Done.")
print("Missing images:", missing_images)
print("Total boxes:", total_boxes)
print("YOLO dataset:", OUT_DIR)
print("YAML:", DATA_YAML_PATH)
if __name__ == "__main__":
main()
|