Documentation Index
Fetch the complete documentation index at: https://docs.elata.bio/llms.txt
Use this file to discover all available pages before exploring further.
Use this guide when you want live camera-based heart rate in a browser app. Start with the quick path first. Move to the manual pipeline only if you need lower-level control.
What this guide covers
This guide shows how to:- capture webcam frames in the browser
- detect a face and extract a face region
- feed samples into the rPPG processor
- read live BPM and signal quality
- improve estimates with Muse PPG when available
Before you start
@elata-biosciences/rppg-webinstalled- Browser with camera access (
getUserMedia) and WebAssembly support - HTTPS or localhost for development
@elata-biosciences/rppg-web- a browser with camera access and WebAssembly support
https://orlocalhost
rPPG works best when the face is well lit, mostly still, and fully visible in frame.
Choose a starting point
Start from a demo
Scaffold a working browser app if you want the fastest path to a reference implementation.
rPPG Web getting started
Learn the package entry points and the higher-level browser API.
Frame sources
See the lower-level camera and face-detection primitives used in this guide.
Calibration and fusion
Add Muse-based calibration when you want stronger estimates.
Quick integration
For most apps, useDemoRunner. It handles frame capture, face detection, ROI extraction, and processing in one flow.
- pnpm
- npm
Manual pipeline
Use the manual path when you want tighter control over face tracking, sampling, or how your app renders intermediate results.Add Muse calibration
If a Muse device is available, you can use its PPG as a reference signal to improve camera-based estimates.For a fuller fusion workflow, including
MuseFusionCalibrator and calibration models, continue to /sdk/rppg-web/calibration.Quality checklist
Use this checklist before debugging the pipeline:- keep lighting even across the face
- reduce head movement
- wait 5 to 10 seconds before trusting early BPM output
- make sure a face ROI is actually being detected
- enable
useSkinMaskwhen you useDemoRunner
Where to go next
rPPG Web getting started
Learn the package surface and the higher-level browser session API.
Frame sources
Understand the camera and face-detection primitives in more detail.
Calibration and fusion
Improve estimates with Muse-based calibration and multi-source fusion.
create-elata-demo
Start from a working reference app if you want a faster onboarding path.