Multi-view hero GIF: one object, 8 angles, one identity (#67)#68
Merged
Conversation
Renders one moving object from 8 ring cameras with the numpy RasterizerBackend, overlays the object's analytic projected box + id in every view (same colour = same identity), and tiles 2x4 into assets/multiview_hero.gif. Pillow is imported lazily inside main() so the package/test/CI import path never depends on it. Refs #67
40 frames, 8-cam ring, 512x256, ~190 KiB. Same red id box in every view that sees the object. Refs #67
Adds the multi-view hero (assets/multiview_hero.gif) as the top README hero with the caption 'multi-view: same object, 8 angles, one identity'; keeps the MTMC hero below it. Closes #67
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.
Adds a reproducible multi-view hero for the README (issue #67).
scripts/render_multiview_hero.py— deterministic, fixed params. 8-camera ring around one moving object, numpyRasterizerBackendonly (no Kubric/Modal). Renders all 8 views per frame, overlays the object's analytic projected box + id (same colour = same identity across every view that sees it), tiles 2x4 with Pillow.assets/multiview_hero.gif— 40 frames, 512x256, ~190 KiB.CI untouched: Pillow is imported lazily inside
main(), never at package/test import — verifiedPILis absent fromsys.modulesafter importing the package. ruff / ruff format / mypy / pytest all green.Reproduce:
uv run --with pillow python scripts/render_multiview_hero.pyCloses #67