pose2sim
pose2sim copied to clipboard
Structure of a "Session"
Some thought about what should be a Session after the discussion we had in the seminar :
Session_mesure (Generally a subject)
│
├──calibration
│ ├── Config.toml
│ ├── Calib_qualisys.toml (if calibration with qualysis)
│ └── Calib_board.toml (if calibration with video)
│
│
│
├── Acqusition_001
│ ├── heatmaps
│ ├── pose
│ ├── pose-3d
│ └── videos
│
├── Acqusition_002
│ ├── heatmaps
│ ├── pose
│ ├── pose-3d
│ └── videos
|
├──.....
|
├── Acqusition_XXX
│ ├── heatmaps
│ ├── pose
│ ├── pose-3d
│ └── videos
│
├──Config.toml
└──User (a folder for some logging)
Currently or we have everything in each acqusition or we have to have one folder supplementary above. To have such organisation it might be needed in some function to change the detection of the session from :
session_dir = os.path.realpath(os.path.join(project_dir, '..','..'))
to :
session_dir = os.path.realpath(os.path.join(project_dir, '..'))
Would you agree ?