Skip to content
Open
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/user_guide/input_output.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ and can be loaded from and saved to various third-party formats.
| [Anipose](anipose:) | | triangulation .csv file, or corresponding pandas DataFrame | Pose | Load |
| [VGG Image Annotator](via:) | VIA | .csv file for [tracks annotation](via:docs/face_track_annotation.html) | Bounding box | Load & Save |
| [Neurodata Without Borders](https://nwb-overview.readthedocs.io/en/latest/) | NWB | .nwb file or NWBFile object with the [ndx-pose extension](https://github.com/rly/ndx-pose) | Pose | Load & Save |
| [animovement](https://animovement.dev) / [aniframe](https://github.com/roaldarbol/aniframe) | | .parquet file | Pose | Load |
| Any | | Numpy arrays | Pose or Bounding box | Load & Save\* |

\*Exporting any `movement` DataArray to a NumPy array is as simple as calling xarray's built-in {meth}`xarray.DataArray.to_numpy()` method, so no specialised "Export/Save As" function is needed, see [xarray's documentation](xarray:user-guide/duckarrays.html) for more details.
Expand Down
2 changes: 1 addition & 1 deletion movement/io/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from . import load_bboxes, load_poses # Trigger register_loader decorators
from . import load_aniframe, load_bboxes, load_poses # Trigger register_loader decorators
from .load import infer_source_software, load_dataset, load_multiview_dataset

__all__ = ["infer_source_software", "load_dataset", "load_multiview_dataset"]
1 change: 1 addition & 0 deletions movement/io/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"Anipose",
"NWB",
"VIA-tracks",
"aniframe",
]
AMBIGUOUS_DLC_LP_SOURCE_SOFTWARE: Final = "DeepLabCut/LightningPose"

Expand Down
Loading
Loading