nmariotto's picture
Upload 2 files
2c892fb verified
Raw
History Blame
22.3 kB
import streamlit as st
import pandas as pd
import matplotlib.pyplot as plt
import zipfile
from PIL import Image
from io import BytesIO
from concurrent.futures import ThreadPoolExecutor
from google.oauth2.credentials import Credentials
from googleapiclient.discovery import build
from googleapiclient.http import MediaIoBaseUpload
from huggingface_hub import hf_hub_download
from ultralytics import YOLO
import gspread
import numpy as np
import time
st.set_page_config(page_title="Scratch Assay Segmentation", layout="wide")
APP_VERSION = "4.0"
DEFAULT_IMGSZ = 640
# Public model repository. The weights are AGPL-3.0, as they derive from
# Ultralytics YOLO11, and are downloadable without a token — the manuscript
# claims that the exact file behind any prediction can be inspected and
# redeployed independently, and a token-gated repository would make that false.
HF_MODEL_REPO = "nmariotto/scratch-assay-segmentation"
# Configurations M and S of the companion manuscript (Mariotto et al.,
# Cytometry Part A). They differ ONLY in model scale; initialisation (COCO),
# padding colour (black) and training schedule are identical. The five
# configurations evaluated are not distinguishable in mean Average Precision,
# so neither of these is "the accurate one": the choice is latency against
# recall, and the labels say so.
MODEL_OPTIONS = {
"M — default (22.4 M parameters)": "M.pt",
"S — fast mode (10.1 M parameters)": "S.pt",
}
# Stable, filesystem-safe key for Drive folders and Sheet logging, decoupled
# from the user-visible label so relabeling does not fragment stored data.
MODEL_STORAGE_KEY = {
"M — default (22.4 M parameters)": "M",
"S — fast mode (10.1 M parameters)": "S",
}
# Measured on the held-out test set (n = 234), mean ± SD over five seeds;
# latency is the median over 40 images on 16 CPU cores. Shown in the interface
# so the trade-off is stated rather than discovered.
MODEL_INFO = {
"M": "mAP@50 93.4 ± 1.1% · recall 78.3 ± 3.0% · ~345 ms per image on CPU",
"S": "mAP@50 94.0 ± 0.7% · recall 74.3 ± 2.3% · ~174 ms per image on CPU",
}
# =========================
# Model init — public Hugging Face repository
# =========================
@st.cache_resource
def load_model(model_filename):
local_model_path = hf_hub_download(
repo_id=HF_MODEL_REPO,
filename=model_filename,
repo_type="model",
)
return YOLO(local_model_path)
# =========================
# Google Drive + Sheets (OAuth2)
# =========================
scope = ["https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/spreadsheets"]
credentials = Credentials(
token=None,
refresh_token=st.secrets["GOOGLE_DRIVE_REFRESH_TOKEN"],
token_uri="https://oauth2.googleapis.com/token",
client_id=st.secrets["GOOGLE_DRIVE_CLIENT_ID"],
client_secret=st.secrets["GOOGLE_DRIVE_CLIENT_SECRET"],
scopes=scope,
)
drive_service = build("drive", "v3", credentials=credentials)
sheets_client = gspread.authorize(credentials)
sheet = sheets_client.open_by_url(st.secrets["feedback_sheet_url"]).sheet1
# =========================
# Helpers
# =========================
def safe_predict(model, image_array, conf_threshold):
"""Same call as the evaluation pipeline: retina_masks gives masks at the
original resolution instead of the model's internal 160 x 160 grid."""
for _ in range(3):
try:
return model.predict(
source=image_array,
imgsz=DEFAULT_IMGSZ,
conf=conf_threshold,
retina_masks=True,
verbose=False,
)
except Exception:
time.sleep(1)
return None
def mask_area_px(result, height, width):
"""Wound area in pixels, computed exactly as in the manuscript.
The published figures come from `etapa3/predict_areas.py`, which counts the
pixels of the UNION of every predicted mask. Two earlier choices in this app
made it disagree with them:
· it kept only the highest-confidence mask, so an image whose wound is
split into two non-contiguous regions was under-reported. Rare (2 of the
234 test images) but silent;
· it took the shapely area of the mask POLYGON rather than counting mask
pixels. Measured against the pipeline over 14 test images, that
under-reported by 0.6% at the median and 2.3% at worst, and the error
grew as the wound shrank — the polygon cuts corners, and the smaller the
wound the larger the share of it that is boundary. It biased exactly the
regime the manuscript already identifies as least reliable.
Returns (area_px, n_masks, union_mask) with union_mask at (height, width).
"""
if result.masks is None or len(result.masks) == 0:
return 0, 0, None
md = result.masks.data.cpu().numpy() > 0.5
union = np.any(md, axis=0)
if union.shape != (height, width):
import cv2
union = cv2.resize(
union.astype(np.uint8), (width, height), interpolation=cv2.INTER_NEAREST
).astype(bool)
return int(union.sum()), int(md.shape[0]), union
def resize_image(image):
return image.resize((640, 640))
def upload_to_drive(image_bytes, filename, folder_id):
media = MediaIoBaseUpload(image_bytes, mimetype="image/png")
drive_service.files().create(
body={"name": filename, "parents": [folder_id]},
media_body=media,
fields="id",
).execute()
def find_or_create_folder(folder_name, parent=None):
query = f"name='{folder_name}' and mimeType='application/vnd.google-apps.folder' and trashed=false"
if parent:
query += f" and '{parent}' in parents"
results = drive_service.files().list(
q=query,
spaces="drive",
fields="files(id, name)",
).execute()
folders = results.get("files", [])
if folders:
return folders[0]["id"]
file_metadata = {"name": folder_name, "mimeType": "application/vnd.google-apps.folder"}
if parent:
file_metadata["parents"] = [parent]
file = drive_service.files().create(body=file_metadata, fields="id").execute()
return file.get("id")
def get_image_bytes(image):
buf = BytesIO()
image.save(buf, format="PNG")
buf.seek(0)
return buf
def sem_segmentacao(safe_name, image):
return {
"Imagem": safe_name,
"Área Segmentada (px²)": None,
"Área Segmentada (µm²)": None,
"Área do campo (%)": None,
"Regiões": 0,
"SemSegmentacao": True,
"Exibir": image,
"Original": get_image_bytes(image),
"Segmentada": None,
"Contorno": None,
}
def process_image(uploaded_file, model, model_confidence, fov_um=None, pixel_size_um=None):
try:
safe_name = uploaded_file.name.replace(" ", "_")
image = Image.open(uploaded_file).convert("RGB")
image_np = np.array(image)
width_px, height_px = image.size
effective_pixel_size_um = None
if pixel_size_um is not None and pixel_size_um > 0:
effective_pixel_size_um = pixel_size_um
elif fov_um is not None and fov_um > 0:
effective_pixel_size_um = fov_um / float(width_px)
results = safe_predict(model, image_np, model_confidence / 100.0)
if not results or len(results) == 0:
return sem_segmentacao(safe_name, image)
result = results[0]
area_px2, n_masks, union = mask_area_px(result, height_px, width_px)
if area_px2 == 0 or union is None:
return sem_segmentacao(safe_name, image)
area_um2 = None
if effective_pixel_size_um is not None:
area_um2 = area_px2 * (effective_pixel_size_um ** 2)
# Overlay: every contour is drawn, so what the user sees is what was
# counted. The contours are for display only; the number above comes
# from the mask raster.
contornos = []
if result.masks is not None and result.masks.xyn is not None:
for c in result.masks.xyn:
if c is not None and len(c) >= 3:
contornos.append(
[[float(x * width_px) for x, _ in c] + [float(c[0][0] * width_px)],
[float(y * height_px) for _, y in c] + [float(c[0][1] * height_px)]]
)
segmented_buffer = BytesIO()
fig, ax = plt.subplots(figsize=(6, 6), dpi=300)
ax.imshow(image)
for xs, ys in contornos:
ax.plot(xs, ys, color="red", linewidth=2)
ax.axis("off")
plt.savefig(segmented_buffer, format="png", bbox_inches="tight", pad_inches=0)
plt.close(fig)
# Contour coordinates as data, in place of the polygon picture that used
# to be shown. A CSV of vertices can be re-plotted or re-measured; a PNG
# of the same polygon cannot.
linhas = ["region,vertex,x_px,y_px"]
for i, (xs, ys) in enumerate(contornos, start=1):
for j, (x, y) in enumerate(zip(xs[:-1], ys[:-1]), start=1):
linhas.append(f"{i},{j},{x:.2f},{y:.2f}")
contorno_csv = BytesIO("\n".join(linhas).encode("utf-8"))
return {
"Imagem": safe_name,
"Área Segmentada (px²)": area_px2,
"Área Segmentada (µm²)": area_um2,
"Área do campo (%)": 100.0 * area_px2 / float(width_px * height_px),
"Regiões": n_masks,
"Original": get_image_bytes(image),
"Segmentada": segmented_buffer,
"Contorno": contorno_csv,
"Exibir": image,
"SemSegmentacao": False,
}
except Exception:
return None
def save_feedback(result, avaliacao, observacao, selected_model_label):
image_name = result["Imagem"]
image_base_name = image_name.rsplit(".", 1)[0]
storage_key = MODEL_STORAGE_KEY[selected_model_label]
sheet.append_row([image_name, avaliacao, observacao, storage_key, APP_VERSION])
if avaliacao in ["Acceptable", "Bad", "No segmentation"]:
sufixo = (
"aceitavel" if avaliacao == "Acceptable"
else "ruim" if avaliacao == "Bad"
else "sem_segmentacao"
)
parent_folder = find_or_create_folder("Feedback Segmentacoes")
model_folder = find_or_create_folder(storage_key, parent_folder)
subfolder = find_or_create_folder(image_base_name, model_folder)
resized_original = resize_image(result["Exibir"])
buf = BytesIO()
resized_original.save(buf, format="PNG")
buf.seek(0)
upload_to_drive(buf, f"original_{storage_key}_v{APP_VERSION}_{sufixo}.png", subfolder)
if avaliacao != "No segmentation" and result.get("Segmentada"):
resized_segmented = resize_image(Image.open(BytesIO(result["Segmentada"].getvalue())))
buf = BytesIO()
resized_segmented.save(buf, format="PNG")
buf.seek(0)
upload_to_drive(
buf, f"segmentada_{storage_key}_v{APP_VERSION}_{sufixo}.png", subfolder
)
def render_metrics(result):
area_px2 = result["Área Segmentada (px²)"]
area_um2 = result["Área Segmentada (µm²)"]
area_pct = result["Área do campo (%)"]
st.markdown("**Segmented area**")
if area_px2 is not None:
st.markdown(f"- {area_px2:,.0f} px²")
if area_um2 is not None:
st.markdown(f"- {area_um2:,.2f} µm²")
if area_pct is not None:
st.markdown(f"- {area_pct:.2f}% of the field")
if area_pct < 5.0:
st.warning(
"The remaining gap is below 5% of the field. In the validation "
"study, agreement with manual measurement degrades in this "
"regime; treat this value as the least reliable point of a series."
)
if result.get("Regiões", 0) > 1:
st.caption(f"{result['Regiões']} disconnected regions; the area is their union.")
def render_feedback_block(result, selected_model_label, prefix_key=""):
st.markdown("#### Segmentation quality feedback")
st.caption("User evaluation used for future model refinement.")
avaliacao = st.radio(
"Segmentation quality assessment:",
["Great", "Acceptable", "Bad", "No segmentation"],
horizontal=True,
key=f"{prefix_key}radio_{result['Imagem']}",
)
observacao = st.text_area(
"Observations (optional):",
key=f"{prefix_key}obs_{result['Imagem']}",
)
if st.button("Save feedback", key=f"{prefix_key}btn_{result['Imagem']}"):
save_feedback(result, avaliacao, observacao, selected_model_label)
st.success("Feedback saved successfully.")
# =========================
# Layout / UI
# =========================
st.title("Scratch Assay Segmentation Tool")
st.caption(f"Platform version {APP_VERSION}")
st.markdown("---")
st.markdown("### Input")
col_input_1, col_input_2 = st.columns([2, 1])
with col_input_1:
upload_option = st.radio("Choose upload type:", ["Single image", "Image folder"], horizontal=True)
with col_input_2:
selected_model_label = st.selectbox("Segmentation model", list(MODEL_OPTIONS.keys()), index=0)
model = load_model(MODEL_OPTIONS[selected_model_label])
st.caption(MODEL_INFO[MODEL_STORAGE_KEY[selected_model_label]])
with st.expander("⚙️ Advanced Settings", expanded=False):
model_confidence = st.slider("Model confidence (%)", 20, 100, 80)
st.caption(
"80% is the operating point at which the reported precision and recall "
"were measured."
)
st.markdown(
"### Physical calibration (optional)\n"
"Provide the physical scale for conversion from pixel area to physical units (µm²). "
"If left empty, results will be reported only in pixels²."
)
c1, c2 = st.columns(2)
fov_um = c1.number_input(
"Field of view width (µm)",
min_value=0.0,
value=0.0,
step=1.0,
help="Physical width of the image field, in micrometers.",
)
pixel_size_um = c2.number_input(
"Pixel size (µm / pixel)",
min_value=0.0,
value=0.0,
step=0.01,
help="If provided, this overrides the FOV-based calibration.",
)
results = []
with st.sidebar:
st.markdown("## Info")
with st.expander("About / Citation", expanded=False):
st.markdown(
f"""
This tool was developed by the **Medical Physics Laboratory** of the Department of
**Biophysics and Pharmacology – IBB, UNESP**.
**FAPESP Process:** 2024/01849-4.
**Coordination:** Prof. Allan Alves.
**Development:** Nycolas Mariotto.
The two configurations offered here are those of the companion manuscript
(Mariotto et al., *Cytometry Part A*). They differ **only in model scale**:
initialisation, padding and training schedule are identical.
- **M** — default. {MODEL_INFO['M']}
- **S** — fast mode. {MODEL_INFO['S']}
Neither is the more accurate: across the five configurations evaluated, mean
mAP@50 spans 93.3–94.0% and no pairwise difference is distinguishable. The choice
is latency against recall.
**What this tool is for.** Comparing conditions across many wells. Agreement with
a careful manual measurement has 95% limits of agreement of about ±0.3 in closure
fraction, so a single automated measurement is **not** a substitute for a single
manual one.
Weights: [{HF_MODEL_REPO}](https://huggingface.co/{HF_MODEL_REPO}) — AGPL-3.0,
derived from Ultralytics YOLO11.
Companion archive: Zenodo DOI [10.5281/zenodo.20298129](https://doi.org/10.5281/zenodo.20298129).
"""
)
# =========================
# Single image
# =========================
if upload_option == "Single image":
uploaded_file = st.file_uploader("Upload an image", type=["png", "jpg", "jpeg", "tiff"])
if uploaded_file:
st.markdown("---")
st.markdown("### Result")
result = process_image(
uploaded_file,
model=model,
model_confidence=model_confidence,
fov_um=fov_um,
pixel_size_um=pixel_size_um,
)
if result:
results.append(result)
st.markdown(f"#### {result['Imagem']}")
if result["SemSegmentacao"]:
st.image(result["Exibir"], caption="Original", use_container_width=True)
st.warning("No segmentation was detected for this image.")
else:
col1, col2 = st.columns(2)
with col1:
st.image(result["Exibir"], caption="Original", use_container_width=True)
with col2:
st.image(result["Segmentada"], caption="Segmentation", use_container_width=True)
render_metrics(result)
st.markdown("### Export")
e1, e2 = st.columns(2)
with e1:
st.download_button(
"Download segmented overlay (PNG)",
data=result["Segmentada"],
file_name=f"segmented_{result['Imagem']}.png",
mime="image/png",
use_container_width=True,
)
with e2:
st.download_button(
"Download contour coordinates (CSV)",
data=result["Contorno"],
file_name=f"contour_{result['Imagem']}.csv",
mime="text/csv",
use_container_width=True,
)
st.markdown("---")
render_feedback_block(result, selected_model_label, prefix_key="single_")
# =========================
# Folder
# =========================
elif upload_option == "Image folder":
uploaded_files = st.file_uploader(
"Upload multiple images",
type=["png", "jpg", "jpeg", "tiff"],
accept_multiple_files=True,
)
if uploaded_files:
st.markdown("---")
st.markdown("### Processing")
def process_wrapper(f):
return process_image(
f,
model=model,
model_confidence=model_confidence,
fov_um=fov_um,
pixel_size_um=pixel_size_um,
)
with ThreadPoolExecutor(max_workers=1) as executor:
processed = list(executor.map(process_wrapper, uploaded_files))
falhas = [f.name for f, r in zip(uploaded_files, processed) if r and r.get("SemSegmentacao")]
if falhas:
st.warning(
f"{len(falhas)} image(s) with no segmentation detected:\n\n- " + "\n- ".join(falhas)
)
zip_images_buffer = BytesIO()
with zipfile.ZipFile(zip_images_buffer, "w") as zip_file:
for idx, result in enumerate(processed, start=1):
if not result:
continue
results.append(result)
st.markdown("---")
st.markdown(f"### Result {idx} · {result['Imagem']}")
if result["SemSegmentacao"]:
st.image(result["Exibir"], caption="Original", use_container_width=True)
st.warning("No segmentation was detected for this image.")
else:
col1, col2 = st.columns(2)
with col1:
st.image(result["Exibir"], caption="Original", use_container_width=True)
with col2:
st.image(result["Segmentada"], caption="Segmentation", use_container_width=True)
render_metrics(result)
zip_file.writestr(
f"segmentada_{result['Imagem']}.png", result["Segmentada"].getvalue()
)
zip_file.writestr(
f"contorno_{result['Imagem']}.csv", result["Contorno"].getvalue()
)
render_feedback_block(result, selected_model_label, prefix_key="folder_")
zip_images_buffer.seek(0)
if results:
st.markdown("---")
st.markdown("### Quantitative results")
df = pd.DataFrame(
[
{
"Image": r["Imagem"],
"Segmented Area (px²)": (
f"{r['Área Segmentada (px²)']:.0f}"
if (not r["SemSegmentacao"] and r["Área Segmentada (px²)"] is not None)
else "No Segmentation"
),
"Segmented Area (µm²)": (
f"{r['Área Segmentada (µm²)']:.2f}"
if (not r["SemSegmentacao"] and r["Área Segmentada (µm²)"] is not None)
else ""
),
"Field (%)": (
f"{r['Área do campo (%)']:.2f}"
if (not r["SemSegmentacao"] and r["Área do campo (%)"] is not None)
else ""
),
"Regions": r.get("Regiões", 0),
}
for r in results
]
)
st.dataframe(df, use_container_width=True)
excel_buffer = BytesIO()
df.to_excel(excel_buffer, index=False)
excel_buffer.seek(0)
st.markdown("### Export results")
c1, c2 = st.columns(2)
with c1:
st.download_button(
"Download table (Excel)",
data=excel_buffer,
file_name="segmentation_results.xlsx",
mime="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
use_container_width=True,
)
with c2:
st.download_button(
"Download segmented images and contours (ZIP)",
data=zip_images_buffer,
file_name="segmented_images.zip",
mime="application/zip",
use_container_width=True,
)