Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Landmark match #234

Merged
merged 4 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions docs/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ Functions to fetch data about landmarks.

pymaid.get_landmarks
pymaid.get_landmark_groups
pymaid.LandmarkMatcher
pymaid.CrossProjectLandmarkMatcher

Reconstruction samplers
-----------------------
Expand Down
3 changes: 3 additions & 0 deletions docs/source/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ What's new?
like in the CATMAID frontend.
- :func:`pymaid.get_stacks`, :func:`pymaid.get_stack_info`, :func:`pymaid.get_mirror_info` functions for getting information about image data
- :class:`pymaid.stack.Stack` class for accessing N5 and JPEG tile image data as a :class:`xarray.DataArray`
- - :class:`pymaid.LandmarkMatcher` and :class:`pymaid.CrossProjectLandmarkMatcher`
for matching paired landmarks for use in transformations within a project
(e.g. left-right or segmental) or between projects (e.g. different animals)
* - 2.4.0
- 27/05/23
- - :func:`pymaid.get_annotation_graph` deprecated in favour of the new
Expand Down
6 changes: 3 additions & 3 deletions pymaid/fetch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

from .. import core, utils, config, cache
from navis import in_volume
from .landmarks import get_landmarks, get_landmark_groups
from .landmarks import get_landmarks, get_landmark_groups, LandmarkMatcher, CrossProjectLandmarkMatcher
from .skeletons import get_skeleton_ids
from .annotations import get_annotation_graph, get_entity_graph, get_annotation_id
from .stack import get_stacks, get_stack_info, get_mirror_info
Expand Down Expand Up @@ -91,8 +91,8 @@
'get_origin', 'get_skids_by_origin',
'get_sampler', 'get_sampler_domains', 'get_sampler_counts',
'get_skeleton_change',
'get_landmarks',
'get_landmark_groups',
'get_landmarks', 'get_landmark_groups',
'LandmarkMatcher', 'CrossProjectLandmarkMatcher',
'get_skeleton_ids',
'get_stacks', 'get_stack_info', 'get_mirror_info',
]
Expand Down
Loading
Loading