File size: 11,978 Bytes
1788f61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
#!/usr/bin/env python3
"""Validate an unpacked CARLA-MWRS release or the canonical source tree.

The validator is intentionally independent of the IAF-Net training code.  It
checks pairing, the frozen Town/weather protocol, image encodings, NumPy
headers and values, calibration records, and the depth conversion invariant.
"""

from __future__ import annotations

import argparse
import hashlib
import json
import math
import re
import sys
from collections import Counter
from pathlib import Path

import numpy as np
from PIL import Image


MODALITIES = {
    "image_2": ".png",
    "gt_image_2": ".png",
    "depth_u16": ".png",
    "depth_meters": ".npy",
    "normal": ".npy",
    "calib": ".txt",
}
WEATHERS = ("ClearDay", "ClearNight", "HeavyFoggyNight", "HeavyRainFoggyNight")
EXPECTED = {
    "training": {"towns": ("Town05", "Town06"), "total": 2400, "per_weather": 600},
    "validation": {"towns": ("Town04",), "total": 1200, "per_weather": 300},
}
STEM_RE = re.compile(
    r"^(Town04|Town05|Town06)_(ClearDay|ClearNight|HeavyFoggyNight|HeavyRainFoggyNight)_(\d{6})$"
)


def fail(errors: list[str], message: str) -> None:
    errors.append(message)


def sha256_file(path: Path, chunk: int = 1024 * 1024) -> str:
    h = hashlib.sha256()
    with path.open("rb") as f:
        while True:
            block = f.read(chunk)
            if not block:
                break
            h.update(block)
    return h.hexdigest()


def parse_calibration(path: Path, errors: list[str]) -> dict[str, list[float]]:
    values: dict[str, list[float]] = {}
    try:
        lines = path.read_text(encoding="utf-8").splitlines()
    except Exception as exc:  # pragma: no cover - diagnostic path
        fail(errors, f"{path}: cannot read calibration ({exc})")
        return values
    for line in lines:
        if ":" not in line:
            continue
        key, raw = line.split(":", 1)
        try:
            vals = [float(x) for x in raw.split()]
        except ValueError:
            fail(errors, f"{path}: non-numeric calibration line")
            continue
        values[key.strip()] = vals
    if len(values.get("P2", [])) != 12:
        fail(errors, f"{path}: P2 must contain 12 values")
    if len(values.get("Vehicle_pos", [])) != 3:
        fail(errors, f"{path}: Vehicle_pos must contain 3 values")
    if any(not math.isfinite(x) for xs in values.values() for x in xs):
        fail(errors, f"{path}: non-finite calibration value")
    return values


def validate(root: Path, full_values: bool = True) -> dict:
    errors: list[str] = []
    report: dict = {
        "root": str(root),
        "status": "PASS",
        "splits": {},
        "errors": errors,
    }
    for split, spec in EXPECTED.items():
        split_report: dict = {"modalities": {}, "weather_counts": {}, "town_counts": {}}
        report["splits"][split] = split_report
        stem_sets: dict[str, set[str]] = {}
        for modality, suffix in MODALITIES.items():
            directory = root / split / modality
            if not directory.is_dir():
                fail(errors, f"missing directory: {directory}")
                stem_sets[modality] = set()
                continue
            paths = sorted(p for p in directory.iterdir() if p.is_file())
            wrong = [p.name for p in paths if p.suffix.lower() != suffix]
            if wrong:
                fail(errors, f"{directory}: unexpected extensions ({wrong[:3]})")
            stems = {p.stem for p in paths if p.suffix.lower() == suffix}
            if len(stems) != len([p for p in paths if p.suffix.lower() == suffix]):
                fail(errors, f"{directory}: duplicate stems")
            stem_sets[modality] = stems
            split_report["modalities"][modality] = {"count": len(paths), "suffix": suffix}
        if stem_sets:
            union = set().union(*stem_sets.values())
            if len(union) != spec["total"]:
                fail(errors, f"{split}: expected {spec['total']} unique stems, got {len(union)}")
            first = stem_sets.get("image_2", set())
            for modality, stems in stem_sets.items():
                if stems != first:
                    fail(errors, f"{split}: stem mismatch image_2 vs {modality}")
            counts = Counter()
            towns = Counter()
            for stem in sorted(first):
                match = STEM_RE.match(stem)
                if not match:
                    fail(errors, f"{split}: invalid stem {stem}")
                    continue
                town, weather, _ = match.groups()
                counts[weather] += 1
                towns[town] += 1
                if town not in spec["towns"]:
                    fail(errors, f"{split}: unexpected town {town} in {stem}")
            split_report["weather_counts"] = dict(sorted(counts.items()))
            split_report["town_counts"] = dict(sorted(towns.items()))
            for weather in WEATHERS:
                if counts[weather] != spec["per_weather"]:
                    fail(errors, f"{split}: {weather} expected {spec['per_weather']}, got {counts[weather]}")

            # Decode every file.  This is deliberately strict for a release
            # validator; --headers-only below can be added if a future release
            # becomes too large for a quick CI job.
            value_stats = {
                "rgb_min": 255,
                "rgb_max": 0,
                "gt_values": set(),
                "depth_u16_min": 65535,
                "depth_u16_max": 0,
                "depth_meters_min": float("inf"),
                "depth_meters_max": float("-inf"),
                "normal_min": float("inf"),
                "normal_max": float("-inf"),
                "normal_norm_min": float("inf"),
                "normal_norm_max": float("-inf"),
                "depth_saturated_pixels": 0,
                "depth_mismatch_pixels": 0,
            }
            for stem in sorted(first):
                rgb_path = root / split / "image_2" / f"{stem}.png"
                gt_path = root / split / "gt_image_2" / f"{stem}.png"
                du_path = root / split / "depth_u16" / f"{stem}.png"
                dm_path = root / split / "depth_meters" / f"{stem}.npy"
                no_path = root / split / "normal" / f"{stem}.npy"
                ca_path = root / split / "calib" / f"{stem}.txt"
                try:
                    rgb = np.asarray(Image.open(rgb_path))
                    if rgb.shape != (384, 1248, 3) or rgb.dtype != np.uint8:
                        fail(errors, f"{rgb_path}: expected RGB uint8 (384,1248,3), got {rgb.shape} {rgb.dtype}")
                    value_stats["rgb_min"] = min(value_stats["rgb_min"], int(rgb.min()))
                    value_stats["rgb_max"] = max(value_stats["rgb_max"], int(rgb.max()))
                except Exception as exc:
                    fail(errors, f"{rgb_path}: decode failed ({exc})")
                try:
                    gt = np.asarray(Image.open(gt_path))
                    if gt.shape != (384, 1248) or gt.dtype != np.uint8:
                        fail(errors, f"{gt_path}: expected grayscale uint8 (384,1248), got {gt.shape} {gt.dtype}")
                    value_stats["gt_values"].update(int(x) for x in np.unique(gt))
                    if not set(np.unique(gt).tolist()).issubset({0, 255}):
                        fail(errors, f"{gt_path}: label contains values outside {{0,255}}")
                except Exception as exc:
                    fail(errors, f"{gt_path}: decode failed ({exc})")
                try:
                    du = np.asarray(Image.open(du_path))
                    if du.shape != (384, 1248) or du.dtype != np.uint16:
                        fail(errors, f"{du_path}: expected uint16 (384,1248), got {du.shape} {du.dtype}")
                    value_stats["depth_u16_min"] = min(value_stats["depth_u16_min"], int(du.min()))
                    value_stats["depth_u16_max"] = max(value_stats["depth_u16_max"], int(du.max()))
                    value_stats["depth_saturated_pixels"] += int(np.count_nonzero(du == 65535))
                except Exception as exc:
                    fail(errors, f"{du_path}: decode failed ({exc})")
                    du = None
                try:
                    dm = np.load(dm_path, allow_pickle=False)
                    if dm.shape != (384, 1248) or dm.dtype != np.dtype("<f4"):
                        fail(errors, f"{dm_path}: expected little-endian float32 (384,1248), got {dm.shape} {dm.dtype}")
                    if not np.isfinite(dm).all() or (dm < 0).any():
                        fail(errors, f"{dm_path}: non-finite or negative depth")
                    value_stats["depth_meters_min"] = min(value_stats["depth_meters_min"], float(dm.min()))
                    value_stats["depth_meters_max"] = max(value_stats["depth_meters_max"], float(dm.max()))
                    if du is not None:
                        # Preserve the float32 arithmetic used when the
                        # materialization was written.  Promoting to float64
                        # before floor can move values that are mathematically
                        # integral by one ULP to the neighbouring bin.
                        expected_du = np.clip(np.floor(dm * np.float32(1000.0)), 0, 65535).astype(np.uint16)
                        value_stats["depth_mismatch_pixels"] += int(np.count_nonzero(expected_du != du))
                except Exception as exc:
                    fail(errors, f"{dm_path}: load/validation failed ({exc})")
                try:
                    normal = np.load(no_path, allow_pickle=False)
                    if normal.shape != (3, 384, 1248) or normal.dtype != np.dtype("<f4"):
                        fail(errors, f"{no_path}: expected little-endian float32 (3,384,1248), got {normal.shape} {normal.dtype}")
                    if not np.isfinite(normal).all():
                        fail(errors, f"{no_path}: non-finite normal")
                    value_stats["normal_min"] = min(value_stats["normal_min"], float(normal.min()))
                    value_stats["normal_max"] = max(value_stats["normal_max"], float(normal.max()))
                    norms = np.linalg.norm(normal, axis=0)
                    value_stats["normal_norm_min"] = min(value_stats["normal_norm_min"], float(norms.min()))
                    value_stats["normal_norm_max"] = max(value_stats["normal_norm_max"], float(norms.max()))
                    if float(np.max(np.abs(norms - 1.0))) > 1e-3:
                        fail(errors, f"{no_path}: normal norm exceeds 1e-3 tolerance")
                except Exception as exc:
                    fail(errors, f"{no_path}: load/validation failed ({exc})")
                parsed = parse_calibration(ca_path, errors)
                if parsed.get("P2") != [624.0, 0.0, 624.0, 0.0, 0.0, 624.0, 192.0, 0.0, 0.0, 0.0, 1.0, 0.0]:
                    # Do not require one exact matrix for future compatible
                    # releases, but record a warning-like error for malformed
                    # dimensions only.  The current protocol is uniform.
                    if len(parsed.get("P2", [])) != 12:
                        fail(errors, f"{ca_path}: malformed P2")
            value_stats["gt_values"] = sorted(value_stats["gt_values"])
            split_report["value_ranges"] = value_stats
    report["status"] = "PASS" if not errors else "FAIL"
    return report


def main() -> int:
    parser = argparse.ArgumentParser()
    parser.add_argument("--data-root", type=Path, required=True)
    parser.add_argument("--report", type=Path)
    args = parser.parse_args()
    report = validate(args.data_root.resolve())
    encoded = json.dumps(report, indent=2, sort_keys=True, default=list) + "\n"
    if args.report:
        args.report.write_text(encoded, encoding="utf-8")
    print(encoded, end="")
    return 0 if report["status"] == "PASS" else 1


if __name__ == "__main__":
    sys.exit(main())