Spaces:
Sleeping
Sleeping
File size: 11,970 Bytes
cb3fc50 | 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 | """
predict_single.py β Run GazeRefine on a single image + fixation CSV.
βββββββββββββββββββββββββββββββββββββββββββ
Command-line usage (matches the README exactly)
βββββββββββββββββββββββββββββββββββββββββββ
python scripts/predict_single.py \\
--image examples/image.png \\
--fixations examples/fixations.csv \\
--output output_mask.png
Optional flags:
--preset colonoscopy | mri (default: colonoscopy)
--threshold 0.5 binarization threshold
--save_overlay also save a colour overlay PNG
--device cuda | cpu (auto-detected by default)
βββββββββββββββββββββββββββββββββββββββββββ
Python API (matches the README exactly)
βββββββββββββββββββββββββββββββββββββββββββ
from scripts.predict_single import predict
mask = predict(
image_path="image.png",
fixation_csv="fixations.csv",
)
# `mask` is a PIL Image of the binary segmentation mask.
# Save it:
mask.save("output_mask.png")
# Extended API β also get overlays and raw arrays:
result = predict(
image_path="image.png",
fixation_csv="fixations.csv",
preset="mri", # "colonoscopy" (default) or "mri"
threshold=0.5,
return_all=True,
)
result["mask"].save("mask.png")
result["gaze_overlay"].save("gaze.png")
result["mask_overlay"].save("overlay.png")
βββββββββββββββββββββββββββββββββββββββββββ
Fixation CSV format
βββββββββββββββββββββββββββββββββββββββββββ
x,y,duration
340,221,180
356,228,145
368,244,205
...
x, y β fixation position in *raw pixel* coordinates of the input image.
(These are automatically normalized by the image size internally.)
duration β fixation duration in any consistent unit (milliseconds typical).
The model only uses *relative* durations, so the unit does not matter.
"""
from __future__ import annotations
import argparse
import sys
from pathlib import Path
from typing import Sequence
import numpy as np
import pandas as pd
import torch
from PIL import Image
# allow `python scripts/predict_single.py` from any working directory
sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
from gazerefine import GazeRefine, overlay_heatmap, overlay_mask
from gazerefine.constants import IMG_MEAN, IMG_STD, IMG_SIZE
from gazerefine.gaze import load_fixation_csv
import torchvision.transforms as T
# ββ per-modality hyperparameter presets ββββββββββββββββββββββββββββββββββββ
# These match the exact settings used to produce the paper's Table 1 numbers.
PRESETS: dict[str, dict] = {
"colonoscopy": dict(
sigma=2.0,
contrast_method="difference",
max_iters=5,
gaze_anchor_weight=0.5,
knn_refine=True,
knn_k=20,
knn_temp=0.1,
),
"mri": dict(
sigma=1.5,
contrast_method="difference",
max_iters=1,
gaze_anchor_weight=0.8,
knn_refine=True,
knn_k=3,
knn_temp=0.1,
),
}
# one shared backbone name for both presets
DINO_NAME = "vit_large_patch16_dinov3.lvd1689m"
# module-level model cache: avoids reloading the backbone across repeated calls
# (useful when this module is imported by the Gradio Space or a notebook loop)
_MODEL_CACHE: dict[str, GazeRefine] = {}
def _get_model(preset: str, device: torch.device) -> GazeRefine:
"""Load (or return a cached) GazeRefine model for the given preset."""
if preset not in _MODEL_CACHE:
cfg = PRESETS[preset]
_MODEL_CACHE[preset] = GazeRefine(dino_name=DINO_NAME, **cfg).to(device).eval()
return _MODEL_CACHE[preset]
# ββ main public function ββββββββββββββββββββββββββββββββββββββββββββββββββββ
import os
import pydicom
import numpy as np
from PIL import Image
@torch.no_grad()
def predict(
image_path: "str | Path | Image.Image",
fixation_csv: "str | Path",
preset: str = "colonoscopy",
threshold: float = 0.5,
device: str | None = None,
return_all: bool = False,
) -> "Image.Image | dict":
"""Run GazeRefine on one image and return the predicted segmentation mask.
Parameters
----------
image_path : path to the input image (.jpg / .jpeg / .png) **or** an
already-loaded ``PIL.Image`` (used by the Gradio Space).
fixation_csv : path to the fixation CSV (``x,y,duration`` columns,
pixel coordinates β see module docstring for the format).
preset : ``"colonoscopy"`` (default, Kvasir-SEG settings) or
``"mri"`` (NCI-ISBI prostate-MRI settings).
threshold : binarization cutoff applied to the [0, 1] soft mask.
device : ``"cuda"`` / ``"cpu"`` β auto-detected when ``None``.
return_all : when ``True``, return a dict with the binary mask PIL Image
**plus** ``gaze_overlay``, ``mask_overlay``, and the raw
numpy arrays ``preds`` and ``gaze_heatmap``.
When ``False`` (default), return only the mask PIL Image.
Returns
-------
``PIL.Image`` of the binary mask, **or** a dict (see ``return_all``).
"""
if preset not in PRESETS:
raise ValueError(f"preset must be one of {list(PRESETS)}, got {preset!r}")
_device = torch.device(device or ("cuda" if torch.cuda.is_available() else "cpu"))
# ββ load the image ββ
ext = os.path.splitext(str(image_path))[1].lower()
if isinstance(image_path, Image.Image):
pil_image = image_path.convert("RGB")
elif ext == ".dcm":
import pydicom
dcm = pydicom.dcmread(str(image_path))
arr = dcm.pixel_array.astype(np.float32)
# normalize properly (medical safe scaling)
arr = arr - arr.min()
arr = arr / (arr.max() + 1e-8)
arr = (arr * 255).astype(np.uint8)
pil_image = Image.fromarray(arr).convert("RGB")
else:
pil_image = Image.open(image_path).convert("RGB")
img_w, img_h = pil_image.size
# ββ load fixations and normalize pixel β [0, 1] ββ
from pathlib import Path
fix_t = load_fixation_csv(
str(fixation_csv),
image_width=img_w,
image_height=img_h,
image_name = Path(image_path).stem
) # (N, 3) float tensor: x, y, duration
fix_t = fix_t.to(_device)
# ββ preprocess the image for DINOv3 ββ
tf = T.Compose([
T.Resize((IMG_SIZE, IMG_SIZE)),
T.ToTensor(),
T.Normalize(IMG_MEAN, IMG_STD),
])
img_t = tf(pil_image).unsqueeze(0).to(_device) # (1, 3, IMG_SIZE, IMG_SIZE)
# ββ run the model ββ
model = _get_model(preset, _device)
out = model(img_t, fix_t)
# ββ decode outputs ββ
soft_mask = out["preds"][0, 0].cpu().numpy() # (H, W) float in [0, 1]
gaze = out["gaze_heatmap"][0].cpu().numpy() # (h, w) float in [0, 1]
bin_mask = (soft_mask > threshold).astype(np.uint8) * 255
mask_pil = Image.fromarray(bin_mask, mode="L")
if not return_all:
return mask_pil
return dict(
mask = mask_pil,
gaze_overlay = overlay_heatmap(pil_image, gaze),
mask_overlay = overlay_mask(pil_image, (bin_mask / 255).astype(np.float32)),
preds = soft_mask,
gaze_heatmap = gaze,
)
# ββ CLI βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _build_parser() -> argparse.ArgumentParser:
ap = argparse.ArgumentParser(
prog="predict_single.py",
description="GazeRefine β zero-shot gaze-guided segmentation on a single image.",
formatter_class=argparse.RawDescriptionHelpFormatter,
epilog="""
Examples
--------
# colonoscopy polyp (default preset):
python scripts/predict_single.py \\
--image examples/images/kvasir_sample.jpg \\
--fixations examples/fixations/kvasir_sample.csv \\
--output output_mask.png
# prostate MRI:
python scripts/predict_single.py \\
--image examples/images/prostate_sample.png \\
--fixations examples/fixations/prostate_sample.csv \\
--output output_mask.png \\
--preset mri
# save overlays too:
python scripts/predict_single.py \\
--image examples/images/kvasir_sample.jpg \\
--fixations examples/fixations/kvasir_sample.csv \\
--output output_mask.png \\
--save_overlay
""",
)
ap.add_argument("--image", required=True,
help="Path to the input image (.jpg / .jpeg / .png).")
ap.add_argument("--fixations", required=True,
help="Path to the fixation CSV (x,y,duration β pixel coordinates).")
ap.add_argument("--output", required=True,
help="Where to save the predicted binary mask (.png).")
ap.add_argument("--preset", default="colonoscopy",
choices=list(PRESETS),
help="Hyperparameter preset: 'colonoscopy' (default) or 'mri'.")
ap.add_argument("--threshold", type=float, default=0.5,
help="Binarization threshold applied to the soft mask (default: 0.5).")
ap.add_argument("--save_overlay", action="store_true",
help="Also save a colour overlay PNG next to --output.")
ap.add_argument("--device", default=None,
help="'cuda' or 'cpu' β auto-detected when not given.")
return ap
def main():
args = _build_parser().parse_args()
print(f"[GazeRefine] image : {args.image}")
print(f"[GazeRefine] fixations: {args.fixations}")
print(f"[GazeRefine] preset : {args.preset}")
print(f"[GazeRefine] threshold: {args.threshold}")
result = predict(
image_path = args.image,
fixation_csv = args.fixations,
preset = args.preset,
threshold = args.threshold,
device = args.device,
return_all = args.save_overlay,
)
output_path = Path(args.output)
output_path.parent.mkdir(parents=True, exist_ok=True)
if isinstance(result, dict):
result["mask"].save(output_path)
print(f"[GazeRefine] mask saved β {output_path}")
if args.save_overlay:
overlay_path = output_path.with_stem(output_path.stem + "_overlay")
result["mask_overlay"].save(overlay_path)
gaze_path = output_path.with_stem(output_path.stem + "_gaze")
result["gaze_overlay"].save(gaze_path)
print(f"[GazeRefine] overlay β {overlay_path}")
print(f"[GazeRefine] gaze prior β {gaze_path}")
else:
result.save(output_path)
print(f"[GazeRefine] mask saved β {output_path}")
if __name__ == "__main__":
main()
|