Spaces:
Running
Running
ambient light note
Browse files
README.md
CHANGED
|
@@ -22,6 +22,7 @@ brings back the reds and oranges the water strips away, from GPS + depth alone.
|
|
| 22 |
π Shooting underwater on an iPhone? ScubAI does this automatically, every dive β **[Get it on iOS](https://apps.apple.com/us/app/scubai/id6741768984)**
|
| 23 |
|
| 24 |
- **Zero-shot** β no per-image tuning, no presets, no reference chart.
|
|
|
|
| 25 |
- **On-device, offline-capable.**
|
| 26 |
- **Patent-pending.**
|
| 27 |
|
|
|
|
| 22 |
π Shooting underwater on an iPhone? ScubAI does this automatically, every dive β **[Get it on iOS](https://apps.apple.com/us/app/scubai/id6741768984)**
|
| 23 |
|
| 24 |
- **Zero-shot** β no per-image tuning, no presets, no reference chart.
|
| 25 |
+
- **Ambient light only** β demo reverses natural sunlight; strobe/mixed-light over-corrects (the app handles those).
|
| 26 |
- **On-device, offline-capable.**
|
| 27 |
- **Patent-pending.**
|
| 28 |
|
app.py
CHANGED
|
@@ -89,6 +89,12 @@ HEADER_MD = """
|
|
| 89 |
The color engine inside **ScubAI** β it brings back the reds and oranges the water strips away.
|
| 90 |
"""
|
| 91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 92 |
APP_CTA_MD = (
|
| 93 |
f"π Shooting underwater on an iPhone? **[ScubAI]({APP_STORE_URL})** "
|
| 94 |
"does this automatically, every dive."
|
|
@@ -215,6 +221,7 @@ def build():
|
|
| 215 |
type="filepath",
|
| 216 |
file_types=RAW_EXTENSIONS,
|
| 217 |
)
|
|
|
|
| 218 |
gr.HTML(MAP_HTML)
|
| 219 |
with gr.Row():
|
| 220 |
lat = gr.Number(label="Latitude", value=DEFAULT_LAT, elem_id="scubai_lat", precision=6)
|
|
|
|
| 89 |
The color engine inside **ScubAI** β it brings back the reds and oranges the water strips away.
|
| 90 |
"""
|
| 91 |
|
| 92 |
+
LIGHTING_NOTE_MD = (
|
| 93 |
+
"> βοΈ **Ambient light only.** This demo reverses how *sunlight* fades with depth, so "
|
| 94 |
+
"strobe, torch, or mixed light will over-correct. The full **ScubAI** app handles those "
|
| 95 |
+
"β this is just the bare engine."
|
| 96 |
+
)
|
| 97 |
+
|
| 98 |
APP_CTA_MD = (
|
| 99 |
f"π Shooting underwater on an iPhone? **[ScubAI]({APP_STORE_URL})** "
|
| 100 |
"does this automatically, every dive."
|
|
|
|
| 221 |
type="filepath",
|
| 222 |
file_types=RAW_EXTENSIONS,
|
| 223 |
)
|
| 224 |
+
gr.Markdown(LIGHTING_NOTE_MD)
|
| 225 |
gr.HTML(MAP_HTML)
|
| 226 |
with gr.Row():
|
| 227 |
lat = gr.Number(label="Latitude", value=DEFAULT_LAT, elem_id="scubai_lat", precision=6)
|