Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ <h3>Video Ingestion Agent</h3>
<li class="step">
<span class="step-num">2</span>
<h3>Reconstruction</h3>
<p>Containerized vision modules turn selected clips into per-frame depth, masks, textured meshes, 6-DoF object poses, and SMPL human body.</p>
<p>Containerized vision modules turn selected clips into per-frame depth, masks, textured meshes, 6-DoF object poses, and parametric human hand and body models.</p>
<span class="pkg">reconstruction/</span>
</li>
<li class="arrow" aria-hidden="true">&rarr;</li>
Expand Down Expand Up @@ -470,7 +470,7 @@ <h2 class="section-title">Packages</h2>
<a class="pkg-link" href="https://github.com/nvidia-isaac/video_to_data/tree/main/reconstruction" target="_blank" rel="noopener">
<div class="pkg-info">
<p class="pkg-name">reconstruction <span class="pkg-tag">Docs coming soon</span></p>
<p class="pkg-blurb">Video &rarr; depth, masks, meshes, 6D poses, human body. 18 containerized modules plus multi-view pipelines for HOI reconstruction and calibration.</p>
<p class="pkg-blurb">Video &rarr; depth, masks, object meshes, 6D pose trajectories, and human body mesh and motion. </p>
</div>
<span class="pkg-cta">View on GitHub &rarr;</span>
</a>
Expand Down
2 changes: 2 additions & 0 deletions video_ingestion_agent/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ data/benchmark/
*.mkv
*.wav
*.mp3
# Keep the demo video embedded on the docs homepage (overrides *.mp4 above; <1MB, non-LFS so the multiversion docs build copies real bytes).
!docs/images/v2d_video_agent_integration_e2e.mp4

# Model checkpoints
checkpoints/
Expand Down
5 changes: 5 additions & 0 deletions video_ingestion_agent/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@
}

html_static_path = ["_static"]
# Copy images/ into the build so raw-HTML media (e.g. the homepage demo video) is
# deployed. NOTE: html_extra_path copies the dir's *contents* to the build root, so
# such media is referenced root-relative (e.g. src="v2d_...mp4"), not "images/...".
# (`.. image::` directives are unaffected and still resolve to _images/.)
html_extra_path = ["images"]
html_css_files = ["custom.css"]
html_js_files = ["svg_zoom.js"]

Expand Down
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions video_ingestion_agent/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,20 @@ a cup."*
:alt: Video Ingestion Agent Overview
:align: center

.. The demo video/poster live in docs/images/, but html_extra_path = ["images"]
copies that dir's contents to the build root, so they are referenced
root-relative below (no "images/" prefix). See conf.py.

.. raw:: html

<video controls muted playsinline preload="metadata"
poster="v2d_video_agent_integration_e2e_poster.jpg"
style="width: 100%; max-width: 960px; height: auto; display: block; margin: 1.5rem auto; border-radius: 8px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);">
<source src="v2d_video_agent_integration_e2e.mp4" type="video/mp4">
Your browser does not support the video tag.
<a href="v2d_video_agent_integration_e2e.mp4">Download the demo video</a>.
</video>

----

Start Here
Expand Down
Loading