write_tracking_h5
sleap.info.write_tracking_h5
¶
Generate an HDF5 or CSV file with track occupancy and point location data.
Ignores tracks that are entirely empty. By default will also ignore
empty frames from the beginning and end of video, although
--all-frames argument will make it include empty frames from beginning
of video.
The HDF5 file has these datasets:
- "track_occupancy" (shape: tracks * frames)
- "tracks" (shape: frames * nodes * 2 * tracks)
- "track_names" (shape: tracks)
- "node_names" (shape: nodes)
- "edge_names" (shape: nodes - 1)
- "edge_inds" (shape: nodes - 1)
- "point_scores" (shape: frames * nodes * tracks)
- "instance_scores" (shape: frames * tracks)
- "tracking_scores" (shape: frames * tracks)
- "labels_path": Path to the source .slp file (if available from GUI context)
- "video_path": Path to the source :py:class:
Video. - "video_ind": Scalar integer index of the video within the :py:class:
Labels. - "provenance": Dictionary that denotes the origin of the :py:class:
Labels.
Note: the datasets are stored column-major as expected by MATLAB.
Functions:
| Name | Description |
|---|---|
get_edges_as_np_strings |
Get list of edge names as bytes. |
get_nodes_as_np_strings |
Get list of node names as bytes. |
get_occupancy_and_points_matrices |
Builds numpy matrices with track occupancy and point location data. |
get_tracks_as_np_strings |
Get list of track names as bytes. |
main |
Writes HDF5 file with matrices of track occupancy and coordinates. |
remove_empty_tracks_from_matrices |
Removes matrix rows/columns for unoccupied tracks. |
write_csv_file |
Write CSV file with data from given dictionary. |
write_occupancy_file |
Write HDF5 file with data from given dictionary. |
get_edges_as_np_strings(labels)
¶
Get list of edge names as bytes.
Source code in sleap/info/write_tracking_h5.py
54 55 56 57 58 59 | |
get_nodes_as_np_strings(labels)
¶
Get list of node names as bytes.
Source code in sleap/info/write_tracking_h5.py
49 50 51 | |
get_occupancy_and_points_matrices(labels, all_frames, video=None)
¶
Builds numpy matrices with track occupancy and point location data.
Note: This function assumes either all instances have tracks or no instances have tracks.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
labels
|
Labels
|
The :py:class: |
required |
all_frames
|
bool
|
If True, then includes zeros so that frame index will line up with columns in the output. Otherwise, there will only be columns for the frames between the first and last frames with labeling data. |
required |
video
|
Video
|
The :py:class: |
None
|
Returns:
| Type | Description |
|---|---|
Tuple[ndarray, ndarray, ndarray, ndarray, ndarray]
|
tuple of arrays:
|
Source code in sleap/info/write_tracking_h5.py
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 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 | |
get_tracks_as_np_strings(labels)
¶
Get list of track names as bytes.
Source code in sleap/info/write_tracking_h5.py
44 45 46 | |
main(labels, output_path, labels_path=None, all_frames=True, video=None, csv=False)
¶
Writes HDF5 file with matrices of track occupancy and coordinates.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
labels
|
Labels
|
The :class: |
required |
output_path
|
str
|
Path of HDF5 file to create. |
required |
labels_path
|
str
|
Path of |
None
|
all_frames
|
bool
|
If True, then includes zeros so that frame index will line up with columns in the output. Otherwise, there will only be columns for the frames between the first and last frames with labeling data. |
True
|
video
|
Video
|
The :py:class: |
None
|
csv
|
bool
|
Bool to save the analysis as a csv file if set to True |
False
|
Returns:
| Type | Description |
|---|---|
|
None |
Source code in sleap/info/write_tracking_h5.py
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 | |
remove_empty_tracks_from_matrices(track_names, occupancy_matrix, locations_matrix, point_scores, instance_scores, tracking_scores)
¶
Removes matrix rows/columns for unoccupied tracks.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
track_names
|
List
|
List of track names |
required |
occupancy_matrix
|
ndarray
|
2d numpy matrix, rows correspond to tracks |
required |
locations_matrix
|
ndarray
|
4d numpy matrix, last index is track |
required |
point_scores
|
ndarray
|
3d numpy matrix, last index is track |
required |
instance_scores
|
ndarray
|
2d numpy matrix, last index is track |
required |
tracking_scores
|
ndarray
|
2d numpy matrix, last index is track |
required |
Returns:
| Type | Description |
|---|---|
Tuple[List, ndarray, ndarray, ndarray, ndarray, ndarray]
|
track_names, occupancy_matrix, locations_matrix, point_scores, instance_scores tracking_scores but without the rows/columns corresponding to unoccupied tracks. |
Source code in sleap/info/write_tracking_h5.py
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | |
write_csv_file(output_path, data_dict)
¶
Write CSV file with data from given dictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
output_path
|
Path of HDF5 file. |
required | |
data_dict
|
Dictionary with data to save. Keys are dataset names, values are the data. |
required |
Returns:
| Type | Description |
|---|---|
|
None |
Source code in sleap/info/write_tracking_h5.py
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | |
write_occupancy_file(output_path, data_dict, transpose=True)
¶
Write HDF5 file with data from given dictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
output_path
|
str
|
Path of HDF5 file. |
required |
data_dict
|
Dict[str, Any]
|
Dictionary with data to save. Keys are dataset names, values are the data. |
required |
transpose
|
bool
|
If True, then any ndarray in data dictionary will be transposed before saving. This is useful for writing files that will be imported into MATLAB, which expects data in column-major format. |
True
|
Returns:
| Type | Description |
|---|---|
|
None |
Source code in sleap/info/write_tracking_h5.py
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 | |