Spaces:
Running on Zero
Running on Zero
File size: 12,961 Bytes
bff20b3 2c70f2e bff20b3 2c70f2e bff20b3 a0fd52f bff20b3 83279a5 bff20b3 a0fd52f bff20b3 a0fd52f bff20b3 a0fd52f bff20b3 a0fd52f 83279a5 a0fd52f bff20b3 2c70f2e bff20b3 83279a5 2c70f2e bff20b3 2482c8d bff20b3 2482c8d bff20b3 a0fd52f b66298c 2c70f2e bff20b3 2482c8d 2593450 bff20b3 2c70f2e bff20b3 a0fd52f 2482c8d bff20b3 b66298c 2482c8d a0fd52f 2482c8d bff20b3 b66298c bff20b3 83279a5 b66298c 83279a5 bff20b3 83279a5 2593450 83279a5 2c70f2e b66298c bff20b3 | 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 | """Sapiens2 pointmap Gradio Space.
Image β per-pixel 3D pointmap (camera frame, metric units). Visualized as a
.ply point cloud rendered with Gradio's Model3D component for interactive 3D
viewing. Foreground mask is mandatory.
Everything runs at the model's NATIVE resolution (max 1024Γ768 grid β at most
~786K points before subsampling to 200K). No huge interpolations.
"""
import sys
import os
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
import tempfile
import cv2
import gradio as gr
import numpy as np
import open3d as o3d
import spaces
import torch
import torch.nn.functional as F
from PIL import Image
from torchvision import transforms
from huggingface_hub import hf_hub_download
from sapiens.dense.models import PointmapEstimator, init_model # registers in registry
_ = PointmapEstimator
# -----------------------------------------------------------------------------
# Config
ASSETS_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "assets")
CONFIGS_DIR = os.path.join(ASSETS_DIR, "configs")
POINTMAP_MODELS = {
"0.4B": {
"repo": "facebook/sapiens2-pointmap-0.4b",
"filename": "sapiens2_0.4b_pointmap.safetensors",
"config": os.path.join(CONFIGS_DIR, "sapiens2_0.4b_pointmap_render_people-1024x768.py"),
},
"0.8B": {
"repo": "facebook/sapiens2-pointmap-0.8b",
"filename": "sapiens2_0.8b_pointmap.safetensors",
"config": os.path.join(CONFIGS_DIR, "sapiens2_0.8b_pointmap_render_people-1024x768.py"),
},
"1B": {
"repo": "facebook/sapiens2-pointmap-1b",
"filename": "sapiens2_1b_pointmap.safetensors",
"config": os.path.join(CONFIGS_DIR, "sapiens2_1b_pointmap_render_people-1024x768.py"),
},
"5B": {
"repo": "facebook/sapiens2-pointmap-5b",
"filename": "sapiens2_5b_pointmap.safetensors",
"config": os.path.join(CONFIGS_DIR, "sapiens2_5b_pointmap_render_people-1024x768.py"),
},
}
DEFAULT_SIZE = "0.4B" # iteration mode β only this is preloaded; others lazy-load on click
FG_REPO = "facebook/sapiens-seg-foreground-1b-torchscript"
FG_FILENAME = "sapiens_1b_seg_foreground_epoch_8_torchscript.pt2"
DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
_fg_transform = transforms.Compose([
transforms.Resize((1024, 768)),
transforms.ToTensor(),
transforms.Normalize(mean=[123.5 / 255, 116.5 / 255, 103.5 / 255],
std=[58.5 / 255, 57.0 / 255, 57.5 / 255]),
])
# -----------------------------------------------------------------------------
# Model cache
_pointmap_model_cache: dict = {}
_fg_model = None
def _get_pointmap_model(size: str):
if size not in _pointmap_model_cache:
spec = POINTMAP_MODELS[size]
ckpt = hf_hub_download(repo_id=spec["repo"], filename=spec["filename"])
model = init_model(spec["config"], ckpt, device=DEVICE)
_pointmap_model_cache[size] = model
return _pointmap_model_cache[size]
def _get_fg_model():
global _fg_model
if _fg_model is None:
ckpt = hf_hub_download(repo_id=FG_REPO, filename=FG_FILENAME)
_fg_model = torch.jit.load(ckpt).eval().to(DEVICE)
return _fg_model
print("[startup] pre-loading 0.4B (iteration mode) + fg/bg ...")
_get_pointmap_model(DEFAULT_SIZE)
_get_fg_model()
print("[startup] ready.")
# -----------------------------------------------------------------------------
# Inference (always at native resolution)
def _estimate_pointmap(image_bgr: np.ndarray, model) -> np.ndarray:
data = model.pipeline(dict(img=image_bgr))
data = model.data_preprocessor(data)
inputs, data_samples = data["inputs"], data["data_samples"]
if inputs.ndim == 3:
inputs = inputs.unsqueeze(0)
with torch.no_grad():
pointmap, scale = model(inputs)
pointmap = pointmap / scale # β metric
pad_left, pad_right, pad_top, pad_bottom = data_samples["meta"]["padding_size"]
pointmap = pointmap[
:, :,
pad_top : inputs.shape[2] - pad_bottom,
pad_left : inputs.shape[3] - pad_right,
]
return pointmap.squeeze(0).cpu().float().numpy().transpose(1, 2, 0) # (H_native, W_native, 3)
def _foreground_mask(image_pil: Image.Image, target_h: int, target_w: int) -> np.ndarray:
fg = _get_fg_model()
inputs = _fg_transform(image_pil).unsqueeze(0).to(DEVICE)
with torch.no_grad():
out = fg(inputs)
out = F.interpolate(out, size=(target_h, target_w), mode="bilinear", align_corners=False)
return (out.argmax(dim=1)[0] > 0).cpu().numpy()
def _depth_to_rgb(depth: np.ndarray, mask: np.ndarray) -> np.ndarray:
"""Inverse-depth turbo colormap (matches sapiens2 vis_pointmap.py).
Background pixels are left at 0 β caller should overlay them."""
valid = np.isfinite(depth) & (depth > 1e-3) & mask
rgb = np.zeros((*depth.shape, 3), dtype=np.uint8)
if not valid.any():
return rgb
inv = np.zeros_like(depth, dtype=np.float32)
inv[valid] = 1.0 / depth[valid]
p1, p99 = np.percentile(inv[valid], [1, 99])
lo, hi = float(p1), float(p99)
if hi <= lo:
hi = lo + 1e-3
norm = ((inv - lo) / (hi - lo)).clip(0, 1)
grey = (norm * 255.0).astype(np.uint8)
color = cv2.applyColorMap(grey, cv2.COLORMAP_TURBO)[:, :, ::-1] # cv2 is BGR β RGB
rgb[valid] = color[valid]
return rgb
# -----------------------------------------------------------------------------
# Point cloud export (camera marker + cloud, native-res grid)
def _camera_marker(radius: float = 0.04, n_points: int = 800,
color=(0.20, 0.55, 0.96)) -> o3d.geometry.PointCloud:
"""Tiny slate-blue Fibonacci sphere at the world origin."""
i = np.arange(n_points)
phi = np.arccos(1 - 2 * (i + 0.5) / n_points)
theta = np.pi * (1 + 5 ** 0.5) * (i + 0.5)
pts = np.stack([
radius * np.sin(phi) * np.cos(theta),
radius * np.sin(phi) * np.sin(theta),
radius * np.cos(phi),
], axis=1)
pc = o3d.geometry.PointCloud()
pc.points = o3d.utility.Vector3dVector(pts.astype(np.float64))
pc.colors = o3d.utility.Vector3dVector(np.tile(color, (n_points, 1)).astype(np.float64))
return pc
def _make_ply(image_pil_native: Image.Image, pointmap_hwc: np.ndarray,
mask_hw: np.ndarray, max_points: int = 200_000) -> str:
"""`image_pil_native` MUST already be sized to `pointmap_hwc.shape[:2]` so
point colors line up. Output .ply: foreground points + camera marker."""
h, w = pointmap_hwc.shape[:2]
image_rgb = np.asarray(image_pil_native.resize((w, h), Image.LANCZOS))
pts = pointmap_hwc.reshape(-1, 3)
cols = image_rgb.reshape(-1, 3).astype(np.float32) / 255.0
z = pts[:, 2]
finite = np.isfinite(pts).all(axis=1) & (z > 0.05) & (z < 25.0) & mask_hw.reshape(-1)
pts, cols = pts[finite], cols[finite]
if len(pts) > max_points:
idx = np.random.default_rng(0).choice(len(pts), size=max_points, replace=False)
pts, cols = pts[idx], cols[idx]
pc = o3d.geometry.PointCloud()
pc.points = o3d.utility.Vector3dVector(pts.astype(np.float64))
pc.colors = o3d.utility.Vector3dVector(cols.astype(np.float64))
pc += _camera_marker()
out_path = tempfile.NamedTemporaryFile(delete=False, suffix=".ply").name
o3d.io.write_point_cloud(out_path, pc, write_ascii=False)
return out_path
# -----------------------------------------------------------------------------
# Gradio handler
@spaces.GPU(duration=120)
def predict(image: Image.Image, size: str):
if image is None:
return None, None
image_pil = image.convert("RGB")
image_bgr = cv2.cvtColor(np.array(image_pil), cv2.COLOR_RGB2BGR)
model = _get_pointmap_model(size)
pointmap = _estimate_pointmap(image_bgr, model) # (H_n, W_n, 3) at most 1024 in either dim
h_n, w_n = pointmap.shape[:2]
mask = _foreground_mask(image_pil, h_n, w_n) # native-res mask, fast
# Depth heatmap (right pane). Solid mid-grey background with the foreground
# turbo-coloured by inverse depth. Mirrors sapiens2 vis_pointmap.py colormap.
depth = pointmap[:, :, 2]
depth_rgb = _depth_to_rgb(depth, mask)
BG_GREY = 200
depth_rgb[~mask] = BG_GREY
w0, h0 = image_pil.size
depth_pil = Image.fromarray(depth_rgb).resize((w0, h0), Image.LANCZOS)
# PLY (download in accordion). Native-res, β€200K points.
ply_path = _make_ply(image_pil, pointmap, mask)
return depth_pil, ply_path
# -----------------------------------------------------------------------------
# UI
EXAMPLES = sorted(
os.path.join(ASSETS_DIR, "images", n)
for n in os.listdir(os.path.join(ASSETS_DIR, "images"))
if n.lower().endswith((".jpg", ".jpeg", ".png"))
)
CUSTOM_CSS = """
:root, body, .gradio-container, button, input, select, textarea,
.gradio-container *:not(code):not(pre) {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#title { text-align: center; font-size: 44px; font-weight: 700;
letter-spacing: -0.01em; margin: 28px 0 4px;
background: linear-gradient(90deg, #1d4ed8 0%, #6d28d9 50%, #be185d 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text; }
#subtitle { text-align: center; font-size: 12px; color: #64748b;
letter-spacing: 0.18em; margin: 0 0 14px; text-transform: uppercase;
font-weight: 500; }
#badges { display: flex; justify-content: center; flex-wrap: wrap;
gap: 8px; margin: 0 0 32px; }
.pill { display: inline-flex; align-items: center; gap: 6px;
padding: 7px 14px; border-radius: 999px;
background: #f1f5f9; color: #0f172a !important;
font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
text-decoration: none !important; border: 1px solid #e2e8f0;
transition: background 150ms ease, transform 150ms ease, border-color 150ms ease; }
.pill:hover { background: #0f172a; color: #f8fafc !important;
border-color: #0f172a; transform: translateY(-1px); }
.pill svg { width: 14px; height: 14px; }
"""
HEADER_HTML = """
<div id="title">Sapiens2: Pointmap</div>
<div id="subtitle">ICLR 2026</div>
<div id="badges">
<a class="pill" href="https://github.com/facebookresearch/sapiens2" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 .3a12 12 0 0 0-3.8 23.4c.6.1.8-.3.8-.6v-2c-3.3.7-4-1.6-4-1.6-.6-1.4-1.4-1.8-1.4-1.8-1.1-.7.1-.7.1-.7 1.3.1 2 1.3 2 1.3 1.1 1.9 3 1.4 3.7 1 .1-.8.4-1.4.8-1.7-2.7-.3-5.5-1.3-5.5-5.9 0-1.3.5-2.4 1.3-3.2-.1-.4-.6-1.6.1-3.2 0 0 1-.3 3.3 1.2a11.5 11.5 0 0 1 6 0c2.3-1.5 3.3-1.2 3.3-1.2.7 1.6.2 2.8.1 3.2.8.8 1.3 1.9 1.3 3.2 0 4.6-2.8 5.6-5.5 5.9.4.4.8 1.1.8 2.2v3.3c0 .3.2.7.8.6A12 12 0 0 0 12 .3"/></svg>
Code
</a>
<a class="pill" href="https://huggingface.co/facebook/sapiens2" target="_blank" rel="noopener">
π€ Models
</a>
<a class="pill" href="https://openreview.net/pdf?id=IVAlYCqdvW" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="9" y1="13" x2="15" y2="13"/><line x1="9" y1="17" x2="15" y2="17"/></svg>
Paper
</a>
<a class="pill" href="https://rawalkhirodkar.github.io/sapiens2" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="2" y1="12" x2="22" y2="12"/><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/></svg>
Project
</a>
</div>
"""
with gr.Blocks(title="Sapiens2 Pointmap", theme=gr.themes.Soft(), css=CUSTOM_CSS) as demo:
gr.HTML(HEADER_HTML)
with gr.Row(equal_height=True):
inp = gr.Image(label="Input", type="pil", height=640)
out_img = gr.Image(label="Depth (Z)", type="pil", height=640)
with gr.Row():
size = gr.Radio(
choices=["0.4B"], # iteration mode β re-add other sizes when shipping
value=DEFAULT_SIZE,
label="Model",
scale=4,
)
run = gr.Button("Run", variant="primary", size="lg", scale=1)
gr.Examples(examples=EXAMPLES, inputs=inp, examples_per_page=14)
with gr.Accordion("Raw Pointmap", open=False):
out_ply_file = gr.File(label="Point cloud (.ply β open in MeshLab/CloudCompare/Blender)")
run.click(predict, inputs=[inp, size], outputs=[out_img, out_ply_file])
if __name__ == "__main__":
if torch.cuda.is_available():
torch.backends.cuda.matmul.allow_tf32 = True
torch.backends.cudnn.allow_tf32 = True
demo.launch(share=False)
|