Spaces:
Sleeping
Sleeping
File size: 27,983 Bytes
b6b0463 c4d5d0f d1f1b61 1290708 c4d5d0f b6b0463 f05f328 c814783 2f53005 8376e5e 2f53005 8376e5e 2f53005 8376e5e 2f53005 c4d5d0f 92f543f b6b0463 2f53005 8376e5e 2f53005 d1f1b61 2ab4518 d1f1b61 f05f328 d1f1b61 2ab4518 f05f328 d1f1b61 2ab4518 aaa54e8 2ab4518 f05f328 2ab4518 b6b0463 7fc3883 b6b0463 3a4d042 7fc3883 6c75ad7 3a4d042 7fc3883 3a4d042 1536c5e 354b84f b6b0463 354b84f 7fc3883 1536c5e 6c75ad7 7ad39b2 3a4d042 7fc3883 3a4d042 1536c5e 354b84f 1536c5e 354b84f 1536c5e b6b0463 1536c5e 3a4d042 7ad39b2 3a4d042 7ad39b2 3a4d042 1536c5e 3a4d042 1536c5e 7ad39b2 1536c5e b6b0463 3a4d042 21edd82 7ad39b2 354b84f 21edd82 3a4d042 b6b0463 21edd82 354b84f 21edd82 b6b0463 | 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 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 | import os
import time
import tempfile
# Set environment variables for large uploads before importing streamlit
os.environ["STREAMLIT_SERVER_MAX_UPLOAD_SIZE"] = "1024"
os.environ["STREAMLIT_SERVER_MAX_MESSAGE_SIZE"] = "1024"
os.environ["STREAMLIT_SERVER_ENABLE_CORS"] = "false"
os.environ["STREAMLIT_SERVER_ENABLE_XSRF_PROTECTION"] = "false"
os.environ["STREAMLIT_BROWSER_GATHER_USAGE_STATS"] = "false"
os.environ["maxUploadSize"] = "1024"
# typing imports removed
import numpy as np # type: ignore # noqa: F401
import streamlit as st # type: ignore
import imageio.v3 as iio # type: ignore
import plotly.express as px # type: ignore
from skimage.transform import resize # type: ignore
from streamlit_cropper import st_cropper # type: ignore
from PIL import Image # type: ignore
from main import inspect_and_preview, _count_dots_on_preview
# Helper functions for robust file upload
# Force configure upload limits using Streamlit's internal config
try:
from streamlit import config # type: ignore
config._set_option("server.maxUploadSize", 1024, "command_line")
config._set_option("server.maxMessageSize", 1024, "command_line")
except:
pass
# Also try setting via runtime config
try:
import streamlit.runtime.config as runtime_config # type: ignore
runtime_config.get_config_options()["server.maxUploadSize"] = 1024
runtime_config.get_config_options()["server.maxMessageSize"] = 1024
except:
pass
# Configure Streamlit for large file uploads
st.set_page_config(page_title="Cell Detector", layout="wide")
st.title("Cell Detection")
# Display current upload limit for debugging
try:
from streamlit import config # type: ignore
current_limit = config.get_option("server.maxUploadSize")
st.caption(f"🔧 Current upload limit: {current_limit}MB")
except:
st.caption("🔧 Upload limit: Using default configuration")
# Upload first with better error handling
st.markdown("### 📁 File Upload")
uploaded = st.file_uploader(
"Upload .tif/.tiff image",
type=["tif", "tiff"],
help="🔬 Upload your microscopy TIFF file. Large files (>500MB) may take several minutes to upload.",
)
# Show upload progress
if uploaded is not None:
try:
file_size_mb = len(uploaded.getvalue()) / (1024 * 1024)
st.success(
f"✅ Upload successful! File: {uploaded.name} ({file_size_mb:.1f}MB)"
)
except Exception as e:
st.error(f"❌ Upload error: {str(e)}")
st.error("Please try refreshing the page and uploading again.")
uploaded = None
# Helper to render settings panel next to slice preview
def render_settings_panel():
st.subheader("Settings")
# Basic image parameters
with st.expander("📏 Image dimensions", expanded=True):
col1, col2 = st.columns(2)
with col1:
width_um = st.number_input(
"Width (µm)", value=1705.6, help="Physical width of the scan."
)
with col2:
height_um = st.number_input(
"Height (µm)", value=1706.81, help="Physical height of the scan."
)
col3, col4 = st.columns(2)
with col3:
min_diam_um = st.number_input(
"Min diameter (µm)",
value=10.0,
help="Ignore circles smaller than this size.",
)
with col4:
downsample = st.slider(
"Speed",
1,
4,
2,
help="Higher = faster preview, slightly less detail.",
)
# Detection parameters
with st.expander("🎯 Detection", expanded=True):
threshold_mode = st.selectbox(
"Threshold method",
["percentile", "otsu", "sauvola"],
help="How we separate bright cells from background.",
)
col1, col2 = st.columns(2)
with col1:
thresh_percent = st.slider(
"Percentile (%)",
50,
99,
72,
help="Lower to include dimmer cells (percentile mode).",
)
with col2:
threshold_scale = st.slider(
"Threshold scale",
0.5,
1.5,
0.8,
help="Fine‑tune sensitivity around the threshold.",
)
# Cell separation parameters
with st.expander("✂️ Cell separation", expanded=False):
seed_mode = st.selectbox(
"Split method",
["both", "distance", "log"],
help="How centers are found to split touching cells.",
)
col1, col2 = st.columns(2)
with col1:
ws_footprint = st.slider(
"Split tightness",
1,
9,
4,
help="Larger splits clustered cells more aggressively.",
)
min_sep_px = st.slider(
"Seed spacing", 0, 6, 2, help="Minimum spacing between seeds."
)
with col2:
log_threshold = st.slider(
"Seed strength", 0.0, 0.1, 0.02, help="Raise to reduce spurious seeds."
)
closing_radius = st.slider(
"Fill gaps", 0, 5, 2, help="Fills tiny holes along cell edges."
)
# Filtering parameters
with st.expander("🔍 Filtering", expanded=False):
col1, col2 = st.columns(2)
with col1:
circularity_min = st.slider(
"Roundness filter",
0.0,
1.0,
0.18,
help="Lower accepts more irregular shapes.",
)
with col2:
min_contrast = st.slider(
"Contrast filter",
0.0,
0.2,
0.03,
help="Raise to keep only high‑contrast cells.",
)
debug = st.checkbox(
"💾 Save debug images", value=True, help="Save step-by-step processing images"
)
# Reset button
st.divider()
if st.button(
"🔄 Reset to recommended settings",
help="Restore all parameters to recommended defaults",
):
# Clear session state to trigger reset on next render
if "_reset_settings" in st.session_state:
del st.session_state["_reset_settings"]
st.session_state["_reset_settings"] = True
st.rerun()
# Apply reset if requested
if st.session_state.get("_reset_settings", False):
st.session_state["_reset_settings"] = False
# Return default values
return (
1705.6, # width_um
1706.81, # height_um
10.0, # min_diam_um
2, # downsample
"percentile", # threshold_mode
72, # thresh_percent
0.8, # threshold_scale
2, # closing_radius
"both", # seed_mode
4, # ws_footprint
2, # min_sep_px
0.02, # log_threshold
0.18, # circularity_min
0.03, # min_contrast
True, # debug
)
return (
width_um,
height_um,
min_diam_um,
downsample,
threshold_mode,
thresh_percent,
threshold_scale,
closing_radius,
seed_mode,
ws_footprint,
min_sep_px,
log_threshold,
circularity_min,
min_contrast,
debug,
)
if uploaded is not None:
# Persist upload to a stable session temp folder to avoid regenerating on each rerun
if "_work_dir" not in st.session_state:
st.session_state["_work_dir"] = tempfile.mkdtemp()
upload_sig = (uploaded.name, getattr(uploaded, "size", None))
if st.session_state.get("_upload_sig") != upload_sig:
st.session_state["_upload_sig"] = upload_sig
in_path = os.path.join(st.session_state["_work_dir"], uploaded.name)
with open(in_path, "wb") as f:
f.write(uploaded.read())
st.session_state["_input_path"] = in_path
# Reset previews ready flag
st.session_state["_previews_ready"] = False
in_path = st.session_state.get("_input_path")
# Preview generation
st.subheader("Channel previews")
@st.cache_data(show_spinner=False)
def generate_previews(input_path: str):
return inspect_and_preview(input_path)
if not st.session_state.get("_previews_ready"):
with st.status("Generating channel previews...", expanded=True) as status:
t0 = time.time()
saved = generate_previews(in_path)
t1 = time.time()
st.session_state["_previews_ready"] = True
status.update(
label=f"Generated {len(saved)} preview images in {t1 - t0:.2f}s",
state="complete",
expanded=False,
)
else:
# Ensure previews exist without recomputation (cache hit)
_ = generate_previews(in_path)
# Find previews and show a single zoomable viewer with channel selector
prev_dir = os.path.splitext(in_path)[0] + "__previews"
options = []
paths = {}
for i in range(4):
p = os.path.join(prev_dir, f"channel{i}.png")
if os.path.exists(p):
key = f"channel{i}"
options.append(key)
paths[key] = p
comp = os.path.join(prev_dir, "composite_RGB.png")
if os.path.exists(comp):
options.append("composite_RGB")
paths["composite_RGB"] = comp
@st.cache_data(show_spinner=False)
def load_preview(path: str, max_dim: int = 2048):
img = iio.imread(path)
h, w = img.shape[:2]
scale = max(h, w) / max_dim if max(h, w) > max_dim else 1.0
if scale > 1.0:
nh, nw = int(h / scale), int(w / scale)
img = resize(img, (nh, nw), preserve_range=True, anti_aliasing=True).astype(
img.dtype
)
return img
if options:
st.subheader("Image viewer")
sel = st.selectbox("Channel", options, index=min(1, len(options) - 1))
img = load_preview(paths[sel])
fig = px.imshow(img, color_continuous_scale="gray", origin="upper")
fig.update_layout(margin=dict(l=0, r=0, t=0, b=0))
st.plotly_chart(fig, use_container_width=True)
# Slice + Settings side-by-side
left, right = st.columns([2, 1], gap="large")
# Slice selection (left)
with left:
st.subheader("Slice preview")
st.caption(
"Drag to select a slice of the current channel to preview with your settings."
)
current_path = paths.get(sel or "", None)
if current_path:
# Load the same downsampled image that's shown in the viewer
img_array = load_preview(current_path)
pil_img = Image.fromarray(img_array.astype(np.uint8)).convert("L")
# Get original image dimensions for physical scaling calculation
orig_img = Image.open(current_path).convert("L")
orig_h, orig_w = (
orig_img.size[1],
orig_img.size[0],
) # PIL uses (W, H) format
# Get the downsampling scale factor
preview_h, preview_w = pil_img.size[1], pil_img.size[0]
scale_factor = orig_w / preview_w # How much the preview is downsampled
# Get crop coordinates from the cropper (working on preview image)
slice_img = st_cropper(pil_img, aspect_ratio=None, box_color="#00FF00")
snp = np.array(slice_img)
h, w = snp.shape[:2]
if h > 0 and w > 0:
# Get original physical dimensions to maintain pixel-to-micron ratio
s = st.session_state.get("_settings", {})
orig_width_um = s.get("width_um", 1705.6)
orig_height_um = s.get("height_um", 1706.81)
# Calculate pixel size from ORIGINAL image (this is the true pixel size)
true_px_size_x_um = orig_width_um / orig_w
true_px_size_y_um = orig_height_um / orig_h
# Crop dimensions are from the downsampled preview, so scale them up to original resolution
orig_crop_w = w * scale_factor
orig_crop_h = h * scale_factor
# SIMPLE CORRECT APPROACH:
# We save h×w pixels from the preview, so physical size = h×w * true_pixel_size
actual_h, actual_w = h, w
slice_width_um = (
actual_w * true_px_size_x_um
) # e.g. 1229 * 0.203 = 249.7 µm
slice_height_um = (
actual_h * true_px_size_y_um
) # e.g. 1228 * 0.203 = 249.5 µm
roi_path = os.path.join(prev_dir, "slice.png")
iio.imwrite(roi_path, snp)
# Calculate what the minimum radius should be in pixels for debugging
min_diam_um = s.get("min_diam_um", 10.0)
avg_px_size_um = np.sqrt(true_px_size_x_um * true_px_size_y_um)
expected_min_radius_px = (min_diam_um / avg_px_size_um) / 2.0
# Show slice info with proper debugging
st.caption(
f"📏 Original: {orig_w}×{orig_h} px → Preview: {preview_w}×{preview_h} px (scale: {scale_factor:.1f}x)"
)
st.caption(
f"📏 Slice: {actual_w}×{actual_h} px → {orig_crop_w:.0f}×{orig_crop_h:.0f} px in original"
)
st.caption(
f"📏 True pixel size: {true_px_size_x_um:.4f}×{true_px_size_y_um:.4f} µm/px"
)
st.caption(
f"🔍 Debug: {min_diam_um}µm min diameter → expected ~{expected_min_radius_px:.1f}px min radius"
)
if st.button("Preview on slice"):
# Get settings from session state if available, fallback to defaults
s = st.session_state.get("_settings", {})
width_um = s.get("width_um", 1705.6)
height_um = s.get("height_um", 1706.81)
min_diam_um = s.get("min_diam_um", 10.0)
downsample = s.get("downsample", 2)
threshold_mode = s.get("threshold_mode", "percentile")
thresh_percent = s.get("thresh_percent", 72.0)
threshold_scale = s.get("threshold_scale", 0.8)
closing_radius = s.get("closing_radius", 2)
seed_mode = s.get("seed_mode", "both")
ws_footprint = s.get("ws_footprint", 4)
min_sep_px = s.get("min_sep_px", 2)
log_threshold = s.get("log_threshold", 0.02)
circularity_min = s.get("circularity_min", 0.18)
min_contrast = s.get("min_contrast", 0.03)
debug = s.get("debug", True)
with st.spinner("Detecting on slice..."):
t0 = time.time()
# Calculate debug info
calc_px_size_x = slice_width_um / actual_w
calc_px_size_y = slice_height_um / actual_h
avg_calc_px_size = np.sqrt(calc_px_size_x * calc_px_size_y)
expected_min_radius_full = (
min_diam_um / avg_calc_px_size
) / 2.0
expected_min_radius_final = expected_min_radius_full
preview_scale_min_diam_um = min_diam_um / scale_factor
# Debug info in collapsible section
with st.expander("🔧 Debug Info", expanded=False):
st.write(
f"**Physical dimensions:** {slice_width_um:.2f}×{slice_height_um:.2f} µm"
)
st.write(
f"**Slice image:** {actual_w}×{actual_h} px (preview scale)"
)
st.write(
f"**Represents:** {orig_crop_w:.0f}×{orig_crop_h:.0f} px in original"
)
st.write(
f"**Calculated pixel size:** {calc_px_size_x:.4f}×{calc_px_size_y:.4f} µm/px"
)
st.write(
f"**Min radius calc:** {min_diam_um}µm ÷ {avg_calc_px_size:.4f}µm/px ÷ 2 = {expected_min_radius_full:.1f}px"
)
st.write(
f"**Adjusted min diameter:** {min_diam_um}µm → {preview_scale_min_diam_um:.1f}µm (for preview scale)"
)
st.write(
f"**Downsample setting:** 1 (no additional scaling)"
)
# Since we're using a preview-scale image, we need to adjust the min diameter
# to match the scale of cells in that image
slice_count, _ = _count_dots_on_preview(
preview_png_path=roi_path,
min_sigma=1.5,
max_sigma=6.0,
num_sigma=10,
threshold=0.03,
overlap=0.5,
downsample=1, # No additional downsampling
width_um=slice_width_um, # Correct physical dimensions
height_um=slice_height_um, # Correct physical dimensions
min_diam_um=preview_scale_min_diam_um, # Adjusted for preview scale
threshold_mode=threshold_mode,
thresh_percent=float(thresh_percent),
threshold_scale=float(threshold_scale),
ws_footprint=int(ws_footprint),
circularity_min=float(circularity_min),
min_area_px=9,
max_diam_um=None,
debug=debug,
closing_radius=int(closing_radius),
min_contrast=float(min_contrast),
hmax=0.0,
seed_mode=seed_mode,
min_sep_px=int(min_sep_px),
log_threshold=float(log_threshold),
save_csv=False,
)
t1 = time.time()
st.success(
f"🎯 Found **{slice_count} cells** in slice ({t1 - t0:.2f}s)"
)
st.image(
os.path.join(prev_dir, "circles_overlay.png"),
caption="Slice overlay",
width="stretch",
)
# Settings panel (right)
with right:
(
width_um,
height_um,
min_diam_um,
downsample,
threshold_mode,
thresh_percent,
threshold_scale,
closing_radius,
seed_mode,
ws_footprint,
min_sep_px,
log_threshold,
circularity_min,
min_contrast,
debug,
) = render_settings_panel()
# Persist settings for later use (e.g., full run)
st.session_state["_settings"] = dict(
width_um=width_um,
height_um=height_um,
min_diam_um=min_diam_um,
downsample=downsample,
threshold_mode=threshold_mode,
thresh_percent=float(thresh_percent),
threshold_scale=float(threshold_scale),
closing_radius=int(closing_radius),
seed_mode=seed_mode,
ws_footprint=int(ws_footprint),
min_sep_px=int(min_sep_px),
log_threshold=float(log_threshold),
circularity_min=float(circularity_min),
min_contrast=float(min_contrast),
debug=bool(debug),
)
# Full run (only when options/settings are active)
if options:
st.subheader("Full run")
if st.button("Run full detection with selected settings"):
# Load latest settings from session (ensures variables are defined)
s = st.session_state.get("_settings", {})
width_um = s.get("width_um", 1705.6)
height_um = s.get("height_um", 1706.81)
min_diam_um = s.get("min_diam_um", 10.0)
downsample = s.get("downsample", 2)
threshold_mode = s.get("threshold_mode", "percentile")
thresh_percent = s.get("thresh_percent", 72.0)
threshold_scale = s.get("threshold_scale", 0.8)
closing_radius = s.get("closing_radius", 2)
seed_mode = s.get("seed_mode", "both")
ws_footprint = s.get("ws_footprint", 4)
min_sep_px = s.get("min_sep_px", 2)
log_threshold = s.get("log_threshold", 0.02)
circularity_min = s.get("circularity_min", 0.18)
min_contrast = s.get("min_contrast", 0.03)
debug = s.get("debug", True)
c1_path = os.path.join(prev_dir, "channel1.png")
if not os.path.exists(c1_path):
st.error("channel1.png not found in previews")
else:
prog = st.progress(0)
prog.progress(5)
with st.spinner("Running detection..."):
t0 = time.time()
full_count, _ = _count_dots_on_preview(
preview_png_path=c1_path,
min_sigma=1.5,
max_sigma=6.0,
num_sigma=10,
threshold=0.03,
overlap=0.5,
downsample=downsample,
width_um=width_um,
height_um=height_um,
min_diam_um=min_diam_um,
threshold_mode=threshold_mode,
thresh_percent=float(thresh_percent),
threshold_scale=float(threshold_scale),
ws_footprint=int(ws_footprint),
circularity_min=float(circularity_min),
min_area_px=9,
max_diam_um=None,
debug=debug,
closing_radius=int(closing_radius),
min_contrast=float(min_contrast),
hmax=0.0,
seed_mode=seed_mode,
min_sep_px=int(min_sep_px),
log_threshold=float(log_threshold),
save_csv=True,
)
prog.progress(95)
t1 = time.time()
# Mark detection as completed and store results
overlay_path = os.path.join(prev_dir, "circles_overlay.png")
csv_path = os.path.join(prev_dir, "detections.csv")
# Read and store file data in session state to persist across reruns
st.session_state["_detection_completed"] = True
st.session_state["_detection_time"] = t1 - t0
st.session_state["_cell_count"] = full_count
st.session_state["_overlay_path"] = overlay_path
if os.path.exists(overlay_path):
with open(overlay_path, "rb") as f:
st.session_state["_overlay_data"] = f.read()
if os.path.exists(csv_path):
with open(csv_path, "rb") as f:
st.session_state["_csv_data"] = f.read()
# Show results if detection has been completed (persistent across reruns)
if st.session_state.get("_detection_completed", False):
overlay_path = st.session_state.get("_overlay_path")
csv_path = st.session_state.get("_csv_path")
detection_time = st.session_state.get("_detection_time", 0)
cell_count = st.session_state.get("_cell_count", 0)
if overlay_path and os.path.exists(overlay_path):
st.success(
f"✅ Detection completed: **{cell_count} cells found** ({detection_time:.2f}s)"
)
# Results section with better styling
st.subheader("Results")
col1, col2 = st.columns([3, 1])
with col1:
st.image(
overlay_path,
caption="Detection overlay - circles show detected cells",
width="stretch",
)
with col2:
st.markdown("### 📥 Downloads")
st.markdown("Click to download your results:")
# Download overlay image
overlay_data = st.session_state.get("_overlay_data")
if overlay_data:
st.download_button(
"🖼️ Overlay image",
data=overlay_data,
file_name="cell_detection_overlay.png",
mime="image/png",
help="Download the annotated image with detected circles",
)
# Download CSV data
csv_data = st.session_state.get("_csv_data")
if csv_data:
st.download_button(
"📊 Detection data",
data=csv_data,
file_name="cell_detection_data.csv",
mime="text/csv",
help="Download CSV with cell coordinates and properties",
)
# Clear results button
st.markdown("---")
if st.button(
"🗑️ Clear results", help="Clear detection results to run again"
):
st.session_state["_detection_completed"] = False
# Clear all detection-related session state
for key in [
"_overlay_path",
"_csv_path",
"_detection_time",
"_overlay_data",
"_csv_data",
"_cell_count",
]:
if key in st.session_state:
del st.session_state[key]
st.rerun()
else:
st.info("Upload a .tif to begin.")
|