Generated via Gemini Pro web UI with "Create image" tool enabled,
uploading a pure black (#000000) 1024x1024 image and prompting
"recreate this as it is". All images verified to contain SynthID
watermarks (confidence 0.52-0.67, carrier strength ~9300-9900).
These reference images are critical for carrier frequency discovery,
phase validation, and improving cross-resolution robustness.
4 test images generated via Gemini API with real content:
- 2x 9:16 (cat, mountain) at 1344x768
- 2x 4:3 (coffee, city) at 864x1184
V3 bypass results with expanded codebook:
| Image | Resolution | PSNR | SSIM | Exact Match |
| city (4:3) | 864x1184 | 45.7 dB | 0.9972 | yes |
| coffee (4:3) | 864x1184 | 50.0 dB | 0.9981 | yes |
| cat (9:16) | 1344x768 | 50.2 dB | 0.9978 | yes |
| mountain (9:16)| 1344x768 | 49.1 dB | 0.9971 | yes |
PSNR/SSIM are excellent. Phase coherence drop is near-zero, suggesting
the API-generated images may have weaker watermark embedding than
web-UI outputs, or the carrier extraction needs further tuning.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Extends spectral_codebook_v3 from 2 to 4 resolution profiles:
- 1024x1024 (existing, 100b+100w refs)
- 1536x2816 (existing, 88 watermarked refs)
- 1344x768 (new, 154b+364w refs, top carrier coherence 0.946)
- 864x1184 (new, 268b+295w refs, top carrier coherence 0.979)
Key findings at new resolutions:
- 1344x768 carriers sit on the vertical axis (fy=0, fx=3..10)
- 864x1184 carriers are at mid-frequency diagonals (13,-16), (23,-24)
- Both show distinct carrier structures vs existing profiles,
confirming resolution-dependent embedding
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
268 black + 281 white pure-color reference images at 864x1184 (4:3
landscape aspect ratio). Generated via gemini-2.5-flash-image model.
This complements the 9:16 portrait images and covers the classic photo
aspect ratio commonly used in Gemini outputs.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
154 black + 359 white pure-color reference images at 1344x768 (9:16
portrait aspect ratio). Generated via gemini-2.5-flash-image model.
This resolution is not covered by the existing codebook and is one of
the most common mobile Gemini output formats.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
generate_references.py automates generating pure-black and pure-white
reference images via the Gemini API at multiple aspect ratios (9:16, 4:3).
Includes rate-limit retry logic and per-resolution output directories.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1. bypass_v2() ignores iterations parameter — the function accepted
`iterations` but ran the transform pipeline only once. Now properly
loops, with diminishing strength on subsequent iterations.
2. denoise_bilateral() has identical if/else branches — both 2D and 3D
cases called the same cv2.bilateralFilter(). Removed dead branch.
3. apply_noise_replacement() allows negative sigma — with passes > 5,
the formula `sigma * (1 - i * 0.2)` produces negative values. Added
clamping and early break.
4. Broken import paths — synthid_bypass.py and watermark_remover.py
used bare module imports that fail when scripts are run from outside
their directory. Added sys.path.insert like benchmark_extraction.py.
5. Misleading "Python 3.14 bug" comment — the SSIM gate was disabled
with a comment blaming Python 3.14, but the real reason is that
heavy multi-pass transforms naturally depress SSIM. Updated comment.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>