Add headless window capture API#281
Open
yuecideng wants to merge 44 commits into
Open
Conversation
Co-authored-by: chenjian <chenjian@dexforce.com>
Co-authored-by: chenjian <chenjian@dexforce.com>
Co-authored-by: chenjian <chenjian@dexforce.com>
Co-authored-by: chenjian <chenjian@dexforce.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: chenjian <chenjian@dexforce.com>
Co-authored-by: Jietao Chen <chenjietao@dexforce.com> Co-authored-by: Yueci Deng <dengyueci@qq.com>
Co-authored-by: chenjian <chenjian@dexforce.com>
Co-authored-by: chenjian <chenjian@dexforce.com>
Co-authored-by: yuanhaonan <yuanhaonan@dexforce.top>
…entation (#247) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Copilot <copilot@github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: chenjian <chenjian@dexforce.com> Co-authored-by: yuecideng <dengyueci@qq.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
…ration (#239) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Chen Jian <mtfl1996@outlook.com> Co-authored-by: chenjian <chenjian@dexforce.com> Co-authored-by: Copilot <copilot@github.com>
Co-authored-by: chenjian <chenjian@dexforce.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: Yueci Deng <dengyueci@qq.com>
Co-authored-by: WaferLi <63717327+WaferLi@users.noreply.github.com> Co-authored-by: liwenfeng <liwenfeng@dexforce.top> Co-authored-by: chenjian <chenjian@dexforce.com> Co-authored-by: daojun <lookangela@qq.com> Co-authored-by: Chen Jian <mtfl1996@outlook.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
The publish job was left with the JamesIves/gh-pages-branch approach from a prior iteration, while GitHub Pages source had drifted to main/docs (serving raw Sphinx source, not built HTML). Changes: - Replace actions/upload-artifact@v4 (name: docs-build) with actions/upload-pages-artifact@v3 — required by actions/deploy-pages - Replace the entire JamesIves publish job with a minimal actions/deploy-pages@v4 job (pages: write + id-token: write) - GitHub Pages source switched to build_type=workflow (GitHub Actions) via API, so deploy-pages is the authoritative deployment mechanism The shared full-site cache in the build job (from the previous fix) is preserved and continues to ensure all versioned dirs survive across main-branch pushes. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
Co-authored-by: chenjian <chenjian@dexforce.com>
Co-authored-by: chenjian <chenjian@dexforce.com>
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Yueci Deng <dengyueci@qq.com>
Co-authored-by: Yueci Deng <dengyueci@qq.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds
SimulationManager.capture_window()for single-frame RGB capture using the same hidden-camera approach as viewer window recording. When a viewer window is open, the capture camera follows the current viewer pose; in headless runs it renders from a provided pose or a default look-at pose.Also updates
scripts/tutorials/sim/create_scene.pywith--capture-window,--capture-path, and--max-stepsso the feature can be verified non-interactively.Fixes #
Type of change
Screenshots
Not applicable. Verification writes
./outputs/window_capture/create_scene_verify.pnglocally.Verification
python -m py_compile embodichain/lab/sim/sim_manager.py scripts/tutorials/sim/create_scene.pyblack --check embodichain/lab/sim/sim_manager.py scripts/tutorials/sim/create_scene.pypython scripts/tutorials/sim/create_scene.py --headless --max-steps 5 --capture-window --capture-path ./outputs/window_capture/create_scene_verify.png1920x1080 RGBand nonblank.Checklist
black .command to format the code base.