A parent container for a movement capture workflow.
Sessions link related entities such as activities and subjects and provide the context used by subsequent operations.
Create a session with createSession() before performing subsequent operations like camera calibration.
createSession()
When connecting or re-connecting to a Session, use qrcode to retrieve the QR code image for pairing cameras.
qrcode
const session = await client.createSession();await client.calibrateCamera(session, details, () => {}); Copy
const session = await client.createSession();await client.calibrateCamera(session, details, () => {});
Optional
A parent container for a movement capture workflow.
Sessions link related entities such as activities and subjects and provide the context used by subsequent operations.
Create a session with
createSession()before performing subsequent operations like camera calibration.When connecting or re-connecting to a Session, use
qrcodeto retrieve the QR code image for pairing cameras.Example