@modelhealth/modelhealth
    Preparing search index...

    Interface Session

    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 qrcode to retrieve the QR code image for pairing cameras.

    const session = await client.createSession();
    await client.calibrateCamera(session, details, () => {});
    interface Session {
        activities: Activity[];
        activitiesCount: number;
        id: string;
        name: string;
        public: boolean;
        qrcode?: string;
        sessionName: string;
        subject?: number;
        user: number;
    }
    Index

    Properties

    activities: Activity[]
    activitiesCount: number
    id: string
    name: string
    public: boolean
    qrcode?: string
    sessionName: string
    subject?: number
    user: number