Datasets:
File size: 8,002 Bytes
c30c2a6 6c59a75 c30c2a6 6c59a75 dbdf69a c30c2a6 6c59a75 dbdf69a c30c2a6 dbdf69a c30c2a6 dbdf69a e27e8f7 dbdf69a e27e8f7 dbdf69a e27e8f7 dbdf69a c30c2a6 6c59a75 dbdf69a c30c2a6 6c59a75 c30c2a6 6c59a75 dbdf69a c30c2a6 | 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 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 | #!/usr/bin/env python3
"""Prepare local derivatives from LabelMe JSON annotations.
By default this script generates indexed mask PNGs and a metadata.jsonl file.
It can also strip base64 imageData from the JSON files and generate a JSONL
manifest for publishing the raw annotations to Hugging Face.
Class mapping (index -> label):
0: background
1: crater
2: shadow
3: surface
4: rock
5: soil
6: rover
7: space
8: rocker
Usage:
python scripts/prepare_dataset.py
python scripts/prepare_dataset.py --skip-strip # keep imageData in JSONs
python scripts/prepare_dataset.py --strip-only # only strip imageData
python scripts/prepare_dataset.py --hf-jsonl # write data/masks/train.jsonl
"""
import argparse
import glob
import json
import os
import sys
from PIL import Image, ImageDraw
# Ordered by frequency (background=0 is reserved for unlabeled pixels)
CLASS_LABELS = {
"background": 0,
"crater": 1,
"shadow": 2,
"surface": 3,
"rock": 4,
"soil": 5,
"rover": 6,
"space": 7,
"rocker": 8,
}
ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
MASKS_DIR = os.path.join(ROOT, "data", "masks")
MASKS_PNG_DIR = os.path.join(ROOT, "data", "masks_png")
METADATA_PATH = os.path.join(ROOT, "data", "metadata.jsonl")
HF_JSONL_PATH = os.path.join(MASKS_DIR, "train.jsonl")
def render_mask(annotation: dict) -> Image.Image:
"""Render a LabelMe annotation dict as an indexed mask image."""
w = annotation["imageWidth"]
h = annotation["imageHeight"]
mask = Image.new("L", (w, h), 0) # 0 = background
draw = ImageDraw.Draw(mask)
for shape in annotation.get("shapes", []):
label = shape["label"]
class_idx = CLASS_LABELS.get(label, 0)
points = shape["points"]
if shape["shape_type"] == "polygon":
polygon = [(p[0], p[1]) for p in points]
if len(polygon) >= 3:
draw.polygon(polygon, fill=class_idx)
elif shape["shape_type"] == "rectangle":
if len(points) == 2:
x0, y0 = points[0]
x1, y1 = points[1]
draw.rectangle(
[min(x0, x1), min(y0, y1), max(x0, x1), max(y0, y1)],
fill=class_idx,
)
return mask
def strip_image_data(json_path: str) -> None:
"""Remove base64 imageData from a LabelMe JSON file in-place."""
with open(json_path, "r") as f:
data = json.load(f)
if data.get("imageData") is None:
return # already stripped
data["imageData"] = None
with open(json_path, "w") as f:
json.dump(data, f, indent=2)
def build_hf_annotation_row(annotation: dict, json_path: str) -> dict:
"""Return a JSON-serializable row for HF streaming from raw annotations."""
shapes = []
for shape in annotation.get("shapes", []):
shapes.append({
"label": shape.get("label"),
"shape_type": shape.get("shape_type"),
"points": shape.get("points", []),
"description": shape.get("description"),
"group_id": shape.get("group_id"),
})
return {
"source_file": os.path.basename(json_path),
"version": annotation.get("version"),
"shapes": shapes,
"imagePath": annotation.get("imagePath"),
"imageHeight": annotation.get("imageHeight"),
"imageWidth": annotation.get("imageWidth"),
"num_shapes": len(shapes),
}
def write_hf_jsonl(json_files: list[str]) -> None:
"""Write a JSONL manifest that HF can stream reliably."""
with open(HF_JSONL_PATH, "w") as f:
for json_path in json_files:
with open(json_path, "r") as src:
annotation = json.load(src)
row = build_hf_annotation_row(annotation, json_path)
f.write(json.dumps(row, ensure_ascii=True) + "\n")
def main():
parser = argparse.ArgumentParser(description="Prepare HF dataset from LabelMe annotations")
parser.add_argument("--skip-strip", action="store_true", help="Don't strip imageData from JSONs")
parser.add_argument(
"--strip-only",
action="store_true",
help="Only strip imageData from JSONs; don't generate PNGs or metadata",
)
parser.add_argument(
"--hf-jsonl",
action="store_true",
help="Write data/masks/train.jsonl for Hugging Face streaming",
)
args = parser.parse_args()
if args.strip_only and args.skip_strip:
parser.error("--strip-only and --skip-strip cannot be used together")
json_files = sorted(glob.glob(os.path.join(MASKS_DIR, "*.json")))
if not json_files:
print(f"No JSON files found in {MASKS_DIR}", file=sys.stderr)
sys.exit(1)
if args.strip_only:
stripped_count = 0
for i, json_path in enumerate(json_files):
with open(json_path, "r") as f:
annotation = json.load(f)
if annotation.get("imageData") is not None:
strip_image_data(json_path)
stripped_count += 1
if (i + 1) % 50 == 0 or (i + 1) == len(json_files):
print(f" [{i + 1}/{len(json_files)}] processed")
print(f"\nDone: stripped imageData from {stripped_count}/{len(json_files)} JSON files")
return
if args.hf_jsonl:
stripped_count = 0
for i, json_path in enumerate(json_files):
with open(json_path, "r") as f:
annotation = json.load(f)
if not args.skip_strip and annotation.get("imageData") is not None:
strip_image_data(json_path)
stripped_count += 1
if (i + 1) % 50 == 0 or (i + 1) == len(json_files):
print(f" [{i + 1}/{len(json_files)}] processed")
write_hf_jsonl(json_files)
print(f"\nDone: wrote HF JSONL to {HF_JSONL_PATH}")
if not args.skip_strip:
print(f"Stripped imageData from {stripped_count}/{len(json_files)} JSON files")
return
os.makedirs(MASKS_PNG_DIR, exist_ok=True)
metadata_entries = []
for i, json_path in enumerate(json_files):
basename = os.path.splitext(os.path.basename(json_path))[0]
png_name = f"{basename}.png"
png_path = os.path.join(MASKS_PNG_DIR, png_name)
with open(json_path, "r") as f:
annotation = json.load(f)
# Render mask PNG
mask = render_mask(annotation)
mask.save(png_path)
# Build metadata entry — normalize Windows-style paths from LabelMe
raw_image_path = annotation.get("imagePath", "")
image_fname = os.path.basename(raw_image_path.replace("\\", "/"))
metadata_entries.append({
"file_name": f"masks_png/{png_name}",
"annotation_json": f"masks/{os.path.basename(json_path)}",
"image_filename": image_fname,
"width": annotation["imageWidth"],
"height": annotation["imageHeight"],
"num_shapes": len(annotation.get("shapes", [])),
})
# Strip imageData
if not args.skip_strip:
strip_image_data(json_path)
if (i + 1) % 50 == 0 or (i + 1) == len(json_files):
print(f" [{i + 1}/{len(json_files)}] processed")
# Write metadata.jsonl
with open(METADATA_PATH, "w") as f:
for entry in metadata_entries:
f.write(json.dumps(entry) + "\n")
print(f"\nDone: {len(json_files)} masks written to {MASKS_PNG_DIR}")
print(f"Metadata written to {METADATA_PATH}")
if not args.skip_strip:
print(f"Stripped imageData from {len(json_files)} JSON files")
# Write class mapping as a separate reference file
class_map_path = os.path.join(ROOT, "data", "class_labels.json")
with open(class_map_path, "w") as f:
json.dump(CLASS_LABELS, f, indent=2)
print(f"Class labels written to {class_map_path}")
if __name__ == "__main__":
main()
|