Which input modalities, pose-estimation approaches, gait features, and machine learning models best detect gait abnormalities in elderly individuals and accurately predict their future disease risk in real‑world conditions?
📸 1. Data Acquisition & Preprocessing
- What kind of input data will be used? RGB video? Depth? IMU sensors?
- Do we need to collect our own dataset, or are public datasets sufficient?
- How do we handle different camera angles, lighting, and occlusions?
- Should we normalize data for different heights, walking speeds, or environments?
📍 2. Pose Estimation (2D/3D)
- Should we use 2D or 3D pose estimation? What are the trade-offs?
- Which pose estimation model is most accurate for elderly gait (OpenPose, MediaPipe, VIBE)?
- How do we track joint positions consistently across frames (frame-to-frame tracking)?
- How accurate does pose estimation need to be for medical relevance?
📈 3. Feature Engineering
- Which gait features are most important (step time, stride length, gait symmetry, etc.)?
- How do we extract features from joint trajectories?
- Can we compute balance or stability from pose landmarks?
- Should we include time-series data or just static posture?
🤖 4. Machine Learning / AI Modeling
- Is the goal classification (e.g. "normal" vs. "abnormal") or regression (e.g. "risk score")?
- Which models are most suitable? Traditional ML (Random Forest) or Deep Learning (CNN, LSTM)?
- Do we need labeled data for specific diseases (e.g., Parkinson's, stroke)?
- How do we evaluate model performance? Accuracy, F1, ROC-AUC, clinical relevance?
🔬 5. Disease Prediction & Risk Analysis
- How can gait features be linked to specific diseases or future fall risk?
- Is there clinical literature that correlates gait features to conditions?
- Do we need to incorporate age, gender, or medical history as additional inputs?
💾 6. Storage & Data Management
- How will we store video and extracted features? Local, cloud, or database?
- Do we need to anonymize or encrypt data for privacy?
- Will real-time processing be needed, or is batch analysis acceptable?
🖥️ 7. Deployment & Interface
- Should the system run in real-time (e.g. clinic hallway camera) or be used for post-analysis?
- What kind of UI is needed for clinicians or caregivers?
- Should results be visualized? (e.g., heatmaps, gait charts)
- Should the system work offline for rural or home use?
📊 8. Evaluation & Validation
- How will we validate that the system correctly detects abnormalities?
- Do we need medical expert validation of predictions?
- What metrics matter most: accuracy, sensitivity, or clinical usefulness?
⚖️ 9. Ethical and Legal Considerations
- How do we ensure data privacy and consent in elderly populations?
- Is the system for assistive, diagnostic, or monitoring use?
- What liability or regulatory issues exist for AI in healthcare?