Add OMEGA V10.2 AR pipeline modules with forced overlay validation and MediaPipe live-stream fixes#351
Open
Copilot wants to merge 2 commits into
Open
Add OMEGA V10.2 AR pipeline modules with forced overlay validation and MediaPipe live-stream fixes#351Copilot wants to merge 2 commits into
Copilot wants to merge 2 commits into
Conversation
Copilot created this pull request from a session on behalf of
LVT-ENG
May 27, 2026 19:54
View session
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Member
There was a problem hiding this comment.
Pull request overview
This PR adds a new backend AR/OMEGA rendering subsystem under api/, including overlay rendering, MediaPipe pose landmarker setup, pipeline orchestration, validation, and launcher utilities. It also expands Python runtime dependencies for OpenCV, NumPy, MediaPipe, and psutil.
Changes:
- Added AR overlay/rendering modules and a production pipeline wrapper.
- Added MediaPipe PoseLandmarker setup and RobertEngine integration.
- Added forced overlay validation, render audit, system config, and launcher modules.
Reviewed changes
Copilot reviewed 11 out of 11 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
api/ar_engine.py |
Adds AR overlay drawing engine and singleton instance. |
api/overlay_manager.py |
Adds biometric overlay manager for node/fit rendering. |
api/omega_full_system.py |
Adds full-system overlay processor and sensor initialization hooks. |
api/system_config.py |
Adds OMEGA protocol configuration object. |
api/production_pipeline.py |
Adds production pipeline wrapper around AR_Engine. |
api/mediapipe_setup.py |
Adds MediaPipe PoseLandmarker setup helper. |
api/robert_engine.py |
Adds RobertEngine MediaPipe frame processor. |
api/empire_launcher.py |
Adds launcher for RobertEngine/Empire mode. |
api/force_overlay_validation.py |
Adds synthetic overlay injection helper. |
api/render_audit.py |
Adds render pipeline certification helper. |
api/requirements.txt |
Adds OpenCV, NumPy, MediaPipe, and psutil dependencies. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Member
|
Supercommit_max.sh |
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.
This PR introduces the OMEGA V10.2 backend AR pipeline components requested for TryOnYou and wires in supporting modules for production launch, forced overlay validation, and render certification. It also resolves MediaPipe
LIVE_STREAMinitialization issues and removes per-frame engine re-instantiation in the production pipeline.AR rendering and orchestration modules
api/for AR composition and orchestration:ar_engine.pyoverlay_manager.pyomega_full_system.pysystem_config.pyproduction_pipeline.pyempire_launcher.pyMediaPipe task integration (v0.10.x path)
mediapipe_setup.pyandrobert_engine.pywith Task API landmarker setup.result_callbackforRunningMode.LIVE_STREAMto prevent invalid landmarker initialization.Forced validation and audit layer
force_overlay_validation.pyfor direct synthetic garment injection on frames.render_audit.pyto certify overlay injection state in pipeline execution.Dependency alignment for OMEGA runtime
api/requirements.txtwith runtime dependencies required by the new modules:opencv-python-headless==4.9.0.80numpy==1.26.0mediapipe==0.10.9psutil==5.9.5Pipeline efficiency update
production_pipeline.pynow reuses a module-levelAR_Engineinstance instead of allocating one per call.