-
Notifications
You must be signed in to change notification settings - Fork 1
feat(#869): Performance capture — video/webcam → face + body animation (consolidated epic) #909
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
3e02a40
feat(#870): mocap spike — MediaPipe→ONNX conversion+parity, SAM licen…
fernandotonon 858b973
feat(#871): ENABLE_MOCAP build infra + VideoFrameSource (Qt Multimedia)
fernandotonon 4b43760
feat(#872): FaceCapPredictor (ONNX consumer #9) + mocap pure-data core
fernandotonon 5c5bbf9
feat(#873): MocapRecorder + 'qtmesh mocap --face' CLI + MCP capture_f…
fernandotonon 17f250a
feat(#874): body capture — PoseCapPredictor + PoseIKSolver + canonica…
fernandotonon addb0e0
feat(#875): live Performance Capture panel — MocapController + QML + …
fernandotonon cdd33c7
feat(#876): mocap hosting script, docs, packaging, release CI, telemetry
fernandotonon 9cb2e7b
fix(#876): use 'hf upload' — huggingface-cli upload was removed in hu…
fernandotonon 2548a90
feat(#876): dedicated per-graph HF mirror repos for the mocap models
fernandotonon c48f931
fix(#875): show Performance Capture when a scene NODE (not just the e…
fernandotonon 6ac9b33
feat(#875): fix stuck camera + add full body live-drive & record to t…
fernandotonon 90d4ece
fix(#875): bundle Info.plist into the .app (camera permission) + them…
fernandotonon 3227eed
fix(#875): always request camera permission on Preview (not just show…
fernandotonon 2e9d587
fix(#875): import the macOS camera permission plugin (the real 'no pr…
fernandotonon d4f2926
feat(#875): camera entitlements + document the notarization requireme…
fernandotonon 0493f2d
merge: bring the mocap epic branch up to current master (facerig #903…
fernandotonon 58a4e4e
merge: fold Mocap Slice A spike (#870) into the consolidated epic branch
fernandotonon 760e7a3
fix(#869): address code-review findings across the mocap epic slices
fernandotonon a52b49a
fix(#869): link the Mocap layer into the tests' common library — CI l…
fernandotonon c62b806
fix(#869): body capture faces the right way + live-drive & video-load…
fernandotonon c0d5782
feat(#869): MCP control for capture channels + video-file source
fernandotonon 78887fd
fix(#869): CI unit-test failures on the mocap branch
fernandotonon bbad480
fix(#869): live body preview uses the same direction-match as Record
fernandotonon 19a7562
Revert "fix(#869): live body preview uses the same direction-match as…
fernandotonon 1fb8562
fix(#869): live body preview reuses the recorded-clip retarget (share…
fernandotonon 706c9ec
fix(mocap): live body preview reuses Record's retarget math (path #2)
fernandotonon 27b8a3c
docs(mocap): update BodyRetargeter comments to describe path #2
fernandotonon 81e4d11
fix(#869): node-head capture drops all keyframes at the clip boundary
fernandotonon 2571d56
diag(#869): surface why node-head capture writes 0 keyframes
fernandotonon bf6b478
fix(#869): node-head capture needs a NAMED parent node
fernandotonon 03bcf2c
fix(#869): don't let stopPreview() throw out of ~MocapController
fernandotonon 6108cda
Merge remote-tracking branch 'origin/master' into feat/mocap-epic-869
fernandotonon caa823d
fix(#869): live body preview was inverted — standing pose must be abs…
fernandotonon eb4349e
feat(#869): add mocap + face-rig models to AI Model Settings catalog
fernandotonon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🩺 Stability & Availability | 🔴 Critical | ⚡ Quick win
Sign the new
QtMultimediaframework.The
ENABLE_MOCAPoption introducesQtMultimediaas a new macOS dependency. However,QtMultimediais missing from the explicit framework code-signing loop (around line 2091 in the original file) and the manual framework copy block (around line 1943).Even if
macdeployqtautomatically copiesQtMultimedia.frameworkinto the bundle, the hardcodedfor framework in ...loop will skip it. This leaves the framework unsigned (or retains an invalid signature), which breaks the ad-hoc bundle signature and causes library validation crashes at runtime.Please add
QtMultimediato thefor framework in ...signing list and the manual copy steps.🤖 Prompt for AI Agents