KeepControl
Keep Control
The Keep Control dataset derived from the Keep Control project and is a Industrial Academic Initial Training Network working towards specific diagnosis and treatment of age-related gait and balance deficits. Part of the dataset was made publicly available on figshare, and it was published as Warmerdam et al., Data, 2022, Full-Body Mobility Data to Validate Inertial Measurement Unit Algorithms in Healthy and Neurological Cohorts, doi: 10.3390/data7100136.
For this dataset a simple load function is provided to load the data into the KielMAT dataclasses.
fetch_dataset(dataset_path=Path(__file__).parent / '_keepcontrol')
Fetch the Keep Control dataset from the OpenNeuro repository. Args: progressbar (bool, optional): Whether to display a progressbar. Defaults to True. dataset_path (str | Path, optional): The path where the dataset is stored. Defaults to Path(file).parent/"_keepcontrol".
Source code in kielmat/datasets/keepcontrol.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
|
load_recording(dataset_path=Path(__file__).parent / '_keepcontrol', id='pp001', task='walkSlow', tracking_systems=['imu', 'omc'], tracked_points=None)
Load a recording from the Keep Control validation study. Args: dataset_path (str or Path, optional): The path to the dataset. Defaults to the "_keepcontrol" directory in the same directory as this file. id (str): The ID of the recording. tracking_systems (str or list of str): A string or list of strings representing the tracking systems for which data should be returned. tracked_points (None, str or list of str, optional): The tracked points of interest. If None, all tracked points will be returned. Defaults to None. Returns: KielMATRecording: An instance of the KielMATRecording dataclass containing the loaded data and channels.
Source code in kielmat/datasets/keepcontrol.py
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
|