File size: 13,335 Bytes
dfe630b | 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 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 | #!/usr/bin/env python3
"""
migrate.py – One-time reorganisation of the visualization directory.
Run from D:\\visualization:
python migrate.py # full migration + cleanup
python migrate.py --dry-run # preview only, no files touched
What the script does
--------------------
1. Creates:
data/Sen2_MTC_{New,Old}/GT/ one shared ground-truth copy
data/Sen2_MTC_{New,Old}/inputs/ cloudy inputs (_A1 / _A2 / _A3)
results/Sen2_MTC_{New,Old}/{method}/ per-method predictions
2. Copies images with a unified naming scheme:
{id}_real_B.png → GT/{id}.png
{id}_fake_B.png → {method}/{id}.png
Out_{id}.png → {method}/{id}.png (diffcr convention)
{id}_real_A1.png → inputs/{id}_A1.png
3. After verifying every expected directory is non-empty, deletes the
original Sen2_MTC_New and Sen2_MTC_Old trees.
Special cases handled
---------------------
- pmaa / Sen2_MTC_New has no Out/ folder: outputs are extracted from the
per-sample test/{psnr_ssim}/ sub-directories.
- diffcr / Sen2_MTC_New has no test/ folder: Out/ already contains flat
Out_{id}.png files.
- diffcr / Sen2_MTC_Old same as above.
- ctgan / Sen2_MTC_New has an extra save/ directory (ignored).
"""
from __future__ import annotations
import argparse
import os
import shutil
import sys
from glob import glob
from tqdm import tqdm
# ---------------------------------------------------------------------------
# Project root (this file lives directly in D:\visualization\)
# ---------------------------------------------------------------------------
ROOT = os.path.dirname(os.path.abspath(__file__))
METHODS: list[str] = [
"ae",
"crtsnet",
"ctgan",
"ddpmcr",
"diffcr",
"dsen2cr",
"mcgan",
"pix2pix",
"pmaa",
"stgan",
"stnet",
"uncrtaints",
]
# ---------------------------------------------------------------------------
# Naming helpers
# ---------------------------------------------------------------------------
def strip_id(path: str) -> str:
"""Extract the clean sample ID from any of the naming conventions used.
Examples
--------
T12TUR_R027_0_real_B.png -> T12TUR_R027_0
T12TUR_R027_0_fake_B.png -> T12TUR_R027_0
Out_T12TUR_R027_0.png -> T12TUR_R027_0
GT_T12TUR_R027_0.png -> T12TUR_R027_0
01WFN_60009000_real_B.png -> 01WFN_60009000
"""
stem = os.path.splitext(os.path.basename(path))[0]
# Prefix conventions used by diffcr
for pfx in ("GT_", "Out_"):
if stem.startswith(pfx):
return stem[len(pfx) :]
# Suffix conventions used by most other methods
for sfx in ("_real_B", "_fake_B"):
if stem.endswith(sfx):
return stem[: -len(sfx)]
# Already a bare ID (should not normally happen)
return stem
def _copy(src: str, dst: str) -> None:
"""Copy *src* to *dst*, creating parent directories as needed."""
os.makedirs(os.path.dirname(dst), exist_ok=True)
shutil.copy2(src, dst)
# ---------------------------------------------------------------------------
# Migration steps
# ---------------------------------------------------------------------------
def migrate_gt(
src_base: str,
dst_data: str,
dry_run: bool,
) -> int:
"""Copy GT images from ae/GT/ → data/{dataset}/GT/ with clean names.
Source name: {id}_real_B.png
Dest name: {id}.png
"""
src_dir = os.path.join(src_base, "ae", "GT")
dst_dir = os.path.join(dst_data, "GT")
files = sorted(glob(os.path.join(src_dir, "*.png")))
if not files:
print(f" [WARN] No GT images found in {src_dir}", file=sys.stderr)
return 0
if not dry_run:
os.makedirs(dst_dir, exist_ok=True)
for f in tqdm(files, desc=" GT", leave=False):
_copy(f, os.path.join(dst_dir, strip_id(f) + ".png"))
return len(files)
def migrate_inputs(
src_base: str,
dst_data: str,
dry_run: bool,
) -> int:
"""Extract real_A1 / real_A2 / real_A3 from ae/test/**/
→ data/{dataset}/inputs/{id}_A{1,2,3}.png
Source name: {id}_real_A1.png
Dest name: {id}_A1.png
"""
src_test = os.path.join(src_base, "ae", "test")
dst_dir = os.path.join(dst_data, "inputs")
# ae/test/ contains one sub-folder per sample named after its psnr/ssim score.
files = sorted(glob(os.path.join(src_test, "*", "*_real_A?.png")))
if not files:
print(f" [WARN] No input images found under {src_test}", file=sys.stderr)
return 0
if not dry_run:
os.makedirs(dst_dir, exist_ok=True)
for f in tqdm(files, desc=" inputs", leave=False):
# e.g. T12TUR_R027_0_real_A1.png → T12TUR_R027_0_A1.png
new_name = os.path.basename(f).replace("_real_A", "_A")
_copy(f, os.path.join(dst_dir, new_name))
return len(files)
def migrate_outputs(
src_base: str,
dst_results: str,
dataset_label: str,
dry_run: bool,
) -> dict[str, int]:
"""Copy each method's predictions into results/{dataset}/{method}/{id}.png
Handles the three different source layouts:
a) Standard: method/Out/{id}_fake_B.png
b) diffcr: method/Out/Out_{id}.png
c) pmaa (New): method/test/{psnr_ssim}/{id}_fake_B.png (no Out/ folder)
"""
counts: dict[str, int] = {}
for method in METHODS:
src_method = os.path.join(src_base, method)
if not os.path.isdir(src_method):
print(f" SKIP {dataset_label}/{method} (directory not found)")
continue
dst_dir = os.path.join(dst_results, method)
files: list[tuple[str, str]] = [] # (src_path, dst_filename)
# ---- pmaa / Sen2_MTC_New only: no Out/ folder ----------------------
if method == "pmaa" and "New" in dataset_label:
for subdir in sorted(glob(os.path.join(src_method, "test", "*/"))):
for f in sorted(glob(os.path.join(subdir, "*_fake_B.png"))):
files.append((f, strip_id(f) + ".png"))
# ---- all other methods: use the flat Out/ folder -------------------
else:
src_out = os.path.join(src_method, "Out")
if not os.path.isdir(src_out):
print(
f" SKIP {dataset_label}/{method} (Out/ folder not found)",
file=sys.stderr,
)
continue
for f in sorted(glob(os.path.join(src_out, "*.png"))):
files.append((f, strip_id(f) + ".png"))
if not files:
print(
f" [WARN] {dataset_label}/{method}: no output images found",
file=sys.stderr,
)
counts[method] = 0
continue
if not dry_run:
os.makedirs(dst_dir, exist_ok=True)
for src_f, dst_name in tqdm(files, desc=f" {method}", leave=False):
_copy(src_f, os.path.join(dst_dir, dst_name))
counts[method] = len(files)
return counts
# ---------------------------------------------------------------------------
# Verification
# ---------------------------------------------------------------------------
def verify(datasets: list[str]) -> bool:
"""Check that every expected output directory is non-empty."""
ok = True
print("\nVerification")
print("-" * 60)
for ds in datasets:
gt_dir = os.path.join(ROOT, "data", ds, "GT")
n_gt = len(glob(os.path.join(gt_dir, "*.png")))
status = "OK" if n_gt > 0 else "EMPTY"
print(f" data/{ds}/GT → {n_gt:4d} files [{status}]")
if n_gt == 0:
ok = False
inp_dir = os.path.join(ROOT, "data", ds, "inputs")
n_inp = len(glob(os.path.join(inp_dir, "*.png")))
status = "OK" if n_inp > 0 else "EMPTY"
print(f" data/{ds}/inputs → {n_inp:4d} files [{status}]")
if n_inp == 0:
ok = False
for m in METHODS:
d = os.path.join(ROOT, "results", ds, m)
if os.path.isdir(d):
n = len(glob(os.path.join(d, "*.png")))
status = "OK" if n > 0 else "EMPTY"
print(f" results/{ds}/{m:<14} → {n:4d} files [{status}]")
if n == 0:
ok = False
else:
print(f" results/{ds}/{m:<14} → MISSING")
# Not every method must exist; treat as non-fatal warning.
return ok
# ---------------------------------------------------------------------------
# Cleanup
# ---------------------------------------------------------------------------
def cleanup(datasets: list[str]) -> None:
"""Delete the original Sen2_MTC_* directories."""
for ds in datasets:
old_dir = os.path.join(ROOT, ds)
if os.path.isdir(old_dir):
print(f" Removing {old_dir} …")
shutil.rmtree(old_dir)
else:
print(f" Already gone: {old_dir}")
# ---------------------------------------------------------------------------
# Main
# ---------------------------------------------------------------------------
def main() -> None:
ap = argparse.ArgumentParser(
description="Migrate visualization directory to the cleaned-up layout."
)
ap.add_argument(
"--dry-run",
action="store_true",
help="Print a summary of what would happen without touching the filesystem.",
)
ap.add_argument(
"--skip-cleanup",
action="store_true",
help="Do not delete the old Sen2_MTC_* directories after migration.",
)
ap.add_argument(
"--dataset",
type=str,
default=None,
choices=["Sen2_MTC_New", "Sen2_MTC_Old"],
help="Migrate only this dataset (default: both).",
)
args = ap.parse_args()
datasets = [args.dataset] if args.dataset else ["Sen2_MTC_New", "Sen2_MTC_Old"]
if args.dry_run:
print("=" * 60)
print("DRY RUN – no files will be copied or deleted")
print("=" * 60)
total_gt = 0
total_inputs = 0
total_results: dict[str, dict[str, int]] = {}
for ds in datasets:
src_base = os.path.join(ROOT, ds)
dst_data = os.path.join(ROOT, "data", ds)
dst_results = os.path.join(ROOT, "results", ds)
if not os.path.isdir(src_base):
print(f"\n[ERROR] Source directory not found: {src_base}", file=sys.stderr)
sys.exit(1)
print(f"\n{'=' * 60}")
print(f" Dataset: {ds}")
print(f"{'=' * 60}")
# Ground truth
print(" Step 1/3 – GT images")
n_gt = migrate_gt(src_base, dst_data, dry_run=args.dry_run)
total_gt += n_gt
print(f" → {n_gt} GT images {'(would copy)' if args.dry_run else 'copied'}")
# Input images
print(" Step 2/3 – Cloudy inputs")
n_inp = migrate_inputs(src_base, dst_data, dry_run=args.dry_run)
total_inputs += n_inp
print(
f" → {n_inp} input images ({n_inp // 3 if n_inp else 0} samples × 3) "
f"{'(would copy)' if args.dry_run else 'copied'}"
)
# Per-method outputs
print(" Step 3/3 – Method outputs")
counts = migrate_outputs(src_base, dst_results, ds, dry_run=args.dry_run)
total_results[ds] = counts
for method, n in counts.items():
print(
f" {method:<14} → {n:4d} images "
f"{'(would copy)' if args.dry_run else 'copied'}"
)
# ---- Summary -----------------------------------------------------------
print(f"\n{'=' * 60}")
print("Summary")
print(f"{'=' * 60}")
print(f" GT images : {total_gt}")
print(f" Input images: {total_inputs}")
for ds, counts in total_results.items():
total_preds = sum(counts.values())
print(f" Results ({ds}): {total_preds}")
if args.dry_run:
print("\n[DRY RUN] Nothing was written. Re-run without --dry-run to proceed.")
return
# ---- Verify before deleting --------------------------------------------
ok = verify(datasets)
if not ok:
print(
"\n[ERROR] Verification found empty directories. "
"Old directories were NOT deleted.\n"
"Please inspect the output above and re-run.",
file=sys.stderr,
)
sys.exit(1)
# ---- Cleanup -----------------------------------------------------------
if args.skip_cleanup:
print("\n[INFO] --skip-cleanup set: original directories kept.")
print(" Delete them manually when you are satisfied with the result.")
else:
print("\nAll checks passed. Deleting original directories …")
cleanup(datasets)
print("Done.")
if __name__ == "__main__":
main()
|