Document grayscale fisheye WebP decode contract

#3
Files changed (1) hide show
  1. README.md +5 -1
README.md CHANGED
@@ -133,7 +133,11 @@ This release applies a storage-only, lossless re-encoding to the published
133
  MOS/SOS data. Every transformed file was decoded immediately after writing and
134
  compared with its source array/value:
135
 
136
- * `rgb/` and `fisheye/` PNGs are stored as lossless WebP.
 
 
 
 
137
  * `depth/` and `sam2/masks/` remain PNG, re-encoded at compression level 9;
138
  their 16-bit modes and pixel values are unchanged.
139
  * `cam_pose/` changes from per-frame `.npz` wrappers to per-frame `.npy`
 
133
  MOS/SOS data. Every transformed file was decoded immediately after writing and
134
  compared with its source array/value:
135
 
136
+ * `rgb/` and `fisheye/` PNGs are stored as lossless WebP. Standard WebP
137
+ decoders expose the grayscale fisheye frames as RGB; use RPX's
138
+ `safe_load_gray` (or Pillow's `.convert("L")`) to recover the original
139
+ `(H, W) uint8` plane. This round-trip was verified with zero pixel
140
+ difference.
141
  * `depth/` and `sam2/masks/` remain PNG, re-encoded at compression level 9;
142
  their 16-bit modes and pixel values are unchanged.
143
  * `cam_pose/` changes from per-frame `.npz` wrappers to per-frame `.npy`