SainsburyWellcomeCentre / aeon_mecha

Project Aeon's main library for interfacing with acquired data. Contains modules for raw data file io, data querying, data processing, data qc, database ingestion, and building computational data pipelines.
BSD 3-Clause "New" or "Revised" License
3 stars 5 forks source link

Update pose reader to account for new format of Bonsai.Sleap v0.3 #364

Closed jkbhagatio closed 2 months ago

jkbhagatio commented 2 months ago

Read harp-binarized data first, and assign columns after, unlike current procedure in reader

jkbhagatio commented 2 months ago

Current column order:

class | class_conf | <body_part1>_x | <body_part1>_y | <body_part1>_conf | ... <body_partN>_x | <body_partN>_y | <body_partN>_conf |

New column order:

class | <class1>_conf | ... <classN>_conf | <body_part1>_x | <body_part1>_y | <body_part1>_conf | ... <body_partN>_x | <body_partN>_y | <body_partN>_conf |