Spaces:
Running
on
Zero
Running
on
Zero
File size: 16,742 Bytes
0c94688 f219113 f4cccb0 0c94688 d1fdb19 0c94688 bad2d4f 0c94688 d1fdb19 0c94688 f78f9ee 0c94688 d1fdb19 0c94688 d1fdb19 0c94688 f4cccb0 0c94688 |
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 |
# Project EmbodiedGen
#
# Copyright (c) 2025 Horizon Robotics. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied. See the License for the specific language governing
# permissions and limitations under the License.
import os
os.environ["GRADIO_APP"] = "imageto3d"
from glob import glob
import gradio as gr
from common import (
MAX_SEED,
VERSION,
active_btn_by_content,
custom_theme,
end_session,
extract_3d_representations_v2,
extract_urdf,
get_seed,
image_css,
image_to_3d,
lighting_css,
preprocess_image_fn,
preprocess_sam_image_fn,
select_point,
start_session,
)
with gr.Blocks(delete_cache=(43200, 43200), theme=custom_theme) as demo:
gr.HTML(image_css, visible=False)
# gr.HTML(lighting_css, visible=False)
gr.Markdown(
"""
## ***EmbodiedGen***: Image-to-3D Asset
**π Version**: {VERSION}
<p style="display: flex; gap: 10px; flex-wrap: nowrap;">
<a href="https://horizonrobotics.github.io/robot_lab/embodied_gen/index.html">
<img alt="π Project Page" src="https://img.shields.io/badge/π-Project_Page-blue">
</a>
<a href="https://arxiv.org/abs/2506.10600">
<img alt="π arXiv" src="https://img.shields.io/badge/π-arXiv-b31b1b">
</a>
<a href="https://github.com/HorizonRobotics/EmbodiedGen">
<img alt="π» GitHub" src="https://img.shields.io/badge/GitHub-000000?logo=github">
</a>
<a href="https://www.youtube.com/watch?v=rG4odybuJRk">
<img alt="π₯ Video" src="https://img.shields.io/badge/π₯-Video-red">
</a>
</p>
πΌοΈ Generate physically plausible 3D asset from single input image.
""".format(
VERSION=VERSION
),
elem_classes=["header"],
)
with gr.Row():
with gr.Column(scale=2):
with gr.Tabs() as input_tabs:
with gr.Tab(
label="Image(auto seg)", id=0
) as single_image_input_tab:
raw_image_cache = gr.Image(
format="png",
image_mode="RGB",
type="pil",
visible=False,
)
image_prompt = gr.Image(
label="Input Image",
format="png",
image_mode="RGBA",
type="pil",
height=400,
elem_classes=["image_fit"],
)
gr.Markdown(
"""
If you are not satisfied with the auto segmentation
result, please switch to the `Image(SAM seg)` tab."""
)
with gr.Tab(
label="Image(SAM seg)", id=1
) as samimage_input_tab:
with gr.Row():
with gr.Column(scale=1):
image_prompt_sam = gr.Image(
label="Input Image",
type="numpy",
height=400,
elem_classes=["image_fit"],
)
image_seg_sam = gr.Image(
label="SAM Seg Image",
image_mode="RGBA",
type="pil",
height=400,
visible=False,
)
with gr.Column(scale=1):
image_mask_sam = gr.AnnotatedImage(
elem_classes=["image_fit"]
)
fg_bg_radio = gr.Radio(
["foreground_point", "background_point"],
label="Select foreground(green) or background(red) points, by default foreground", # noqa
value="foreground_point",
)
gr.Markdown(
""" Click the `Input Image` to select SAM points,
after get the satisified segmentation, click `Generate`
button to generate the 3D asset. \n
Note: If the segmented foreground is too small relative
to the entire image area, the generation will fail.
"""
)
with gr.Accordion(label="Generation Settings", open=False):
with gr.Row():
seed = gr.Slider(
0, MAX_SEED, label="Seed", value=0, step=1
)
texture_size = gr.Slider(
1024,
4096,
label="UV texture size",
value=2048,
step=256,
)
rmbg_tag = gr.Radio(
choices=["rembg", "rmbg14"],
value="rembg",
label="Background Removal Model",
)
with gr.Row():
randomize_seed = gr.Checkbox(
label="Randomize Seed", value=False
)
project_delight = gr.Checkbox(
label="Back-project Delight",
value=True,
)
gr.Markdown("Geo Structure Generation")
with gr.Row():
ss_guidance_strength = gr.Slider(
0.0,
10.0,
label="Guidance Strength",
value=7.5,
step=0.1,
)
ss_sampling_steps = gr.Slider(
1, 50, label="Sampling Steps", value=12, step=1
)
gr.Markdown("Visual Appearance Generation")
with gr.Row():
slat_guidance_strength = gr.Slider(
0.0,
10.0,
label="Guidance Strength",
value=3.0,
step=0.1,
)
slat_sampling_steps = gr.Slider(
1, 50, label="Sampling Steps", value=12, step=1
)
generate_btn = gr.Button(
"π 1. Generate(~0.5 mins)",
variant="primary",
interactive=False,
)
model_output_obj = gr.Textbox(label="raw mesh .obj", visible=False)
with gr.Row():
extract_rep3d_btn = gr.Button(
"π 2. Extract 3D Representation(~2 mins)",
variant="primary",
interactive=False,
)
with gr.Accordion(
label="Enter Asset Attributes(optional)", open=False
):
asset_cat_text = gr.Textbox(
label="Enter Asset Category (e.g., chair)"
)
height_range_text = gr.Textbox(
label="Enter **Height Range** in meter (e.g., 0.5-0.6)"
)
mass_range_text = gr.Textbox(
label="Enter **Mass Range** in kg (e.g., 1.1-1.2)"
)
asset_version_text = gr.Textbox(
label=f"Enter version (e.g., {VERSION})"
)
with gr.Row():
extract_urdf_btn = gr.Button(
"π§© 3. Extract URDF with physics(~1 mins)",
variant="primary",
interactive=False,
)
with gr.Row():
gr.Markdown(
"#### Estimated Asset 3D Attributes(No input required)"
)
with gr.Row():
est_type_text = gr.Textbox(
label="Asset category", interactive=False
)
est_height_text = gr.Textbox(
label="Real height(.m)", interactive=False
)
est_mass_text = gr.Textbox(
label="Mass(.kg)", interactive=False
)
est_mu_text = gr.Textbox(
label="Friction coefficient", interactive=False
)
with gr.Row():
download_urdf = gr.DownloadButton(
label="β¬οΈ 4. Download URDF",
variant="primary",
interactive=False,
)
gr.Markdown(
""" NOTE: If `Asset Attributes` are provided, it will guide
GPT to perform physical attributes restoration. \n
The `Download URDF` file is restored to the real scale and
has quality inspection, open with an editor to view details.
"""
)
with gr.Row() as single_image_example:
examples = gr.Examples(
label="Image Gallery",
examples=[
[image_path]
for image_path in sorted(
glob("assets/example_image/*")
)
],
inputs=[image_prompt, rmbg_tag],
fn=preprocess_image_fn,
outputs=[image_prompt, raw_image_cache],
run_on_click=True,
examples_per_page=10,
)
with gr.Row(visible=False) as single_sam_image_example:
examples = gr.Examples(
label="Image Gallery",
examples=[
[image_path]
for image_path in sorted(
glob("assets/example_image/*")
)
],
inputs=[image_prompt_sam],
fn=preprocess_sam_image_fn,
outputs=[image_prompt_sam, raw_image_cache],
run_on_click=True,
examples_per_page=10,
)
with gr.Column(scale=1):
gr.Markdown("<br>")
video_output = gr.Video(
label="Generated 3D Asset",
autoplay=True,
loop=True,
height=300,
)
model_output_gs = gr.Model3D(
label="Gaussian Representation", height=300, interactive=False
)
aligned_gs = gr.Textbox(visible=False)
gr.Markdown(
""" The rendering of `Gaussian Representation` takes additional 10s. """ # noqa
)
with gr.Row():
model_output_mesh = gr.Model3D(
label="Mesh Representation",
height=300,
interactive=False,
clear_color=[0.8, 0.8, 0.8, 1],
elem_id="lighter_mesh",
)
is_samimage = gr.State(False)
output_buf = gr.State()
selected_points = gr.State(value=[])
demo.load(start_session)
demo.unload(end_session)
single_image_input_tab.select(
lambda: tuple(
[False, gr.Row.update(visible=True), gr.Row.update(visible=False)]
),
outputs=[is_samimage, single_image_example, single_sam_image_example],
)
samimage_input_tab.select(
lambda: tuple(
[True, gr.Row.update(visible=True), gr.Row.update(visible=False)]
),
outputs=[is_samimage, single_sam_image_example, single_image_example],
)
image_prompt.upload(
preprocess_image_fn,
inputs=[image_prompt, rmbg_tag],
outputs=[image_prompt, raw_image_cache],
)
image_prompt.change(
lambda: tuple(
[
gr.Button(interactive=False),
gr.Button(interactive=False),
gr.Button(interactive=False),
None,
"",
None,
None,
"",
"",
"",
"",
"",
"",
"",
"",
]
),
outputs=[
extract_rep3d_btn,
extract_urdf_btn,
download_urdf,
model_output_gs,
aligned_gs,
model_output_mesh,
video_output,
asset_cat_text,
height_range_text,
mass_range_text,
asset_version_text,
est_type_text,
est_height_text,
est_mass_text,
est_mu_text,
],
)
image_prompt.change(
active_btn_by_content,
inputs=image_prompt,
outputs=generate_btn,
)
image_prompt_sam.upload(
preprocess_sam_image_fn,
inputs=[image_prompt_sam],
outputs=[image_prompt_sam, raw_image_cache],
)
image_prompt_sam.change(
lambda: tuple(
[
gr.Button(interactive=False),
gr.Button(interactive=False),
gr.Button(interactive=False),
None,
None,
None,
"",
"",
"",
"",
"",
"",
"",
"",
None,
[],
]
),
outputs=[
extract_rep3d_btn,
extract_urdf_btn,
download_urdf,
model_output_gs,
model_output_mesh,
video_output,
asset_cat_text,
height_range_text,
mass_range_text,
asset_version_text,
est_type_text,
est_height_text,
est_mass_text,
est_mu_text,
image_mask_sam,
selected_points,
],
)
image_prompt_sam.select(
select_point,
[
image_prompt_sam,
selected_points,
fg_bg_radio,
],
[image_mask_sam, image_seg_sam],
)
image_seg_sam.change(
active_btn_by_content,
inputs=image_seg_sam,
outputs=generate_btn,
)
generate_btn.click(
get_seed,
inputs=[randomize_seed, seed],
outputs=[seed],
).success(
image_to_3d,
inputs=[
image_prompt,
seed,
ss_guidance_strength,
ss_sampling_steps,
slat_guidance_strength,
slat_sampling_steps,
raw_image_cache,
image_seg_sam,
is_samimage,
],
outputs=[output_buf, video_output],
).success(
lambda: gr.Button(interactive=True),
outputs=[extract_rep3d_btn],
)
extract_rep3d_btn.click(
extract_3d_representations_v2,
inputs=[
output_buf,
project_delight,
texture_size,
],
outputs=[
model_output_mesh,
model_output_gs,
model_output_obj,
aligned_gs,
],
).success(
lambda: gr.Button(interactive=True),
outputs=[extract_urdf_btn],
)
extract_urdf_btn.click(
extract_urdf,
inputs=[
aligned_gs,
model_output_obj,
asset_cat_text,
height_range_text,
mass_range_text,
asset_version_text,
],
outputs=[
download_urdf,
est_type_text,
est_height_text,
est_mass_text,
est_mu_text,
],
queue=True,
show_progress="full",
).success(
lambda: gr.Button(interactive=True),
outputs=[download_urdf],
)
if __name__ == "__main__":
demo.launch()
|