Feat/trajectory complexity example#939
Open
Vadim3377 wants to merge 6 commits intoneuroinformatics-unit:mainfrom
Open
Feat/trajectory complexity example#939Vadim3377 wants to merge 6 commits intoneuroinformatics-unit:mainfrom
Vadim3377 wants to merge 6 commits intoneuroinformatics-unit:mainfrom
Conversation
for more information, see https://pre-commit.ci
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Description
What is this PR
Addition of a new feature
Why is this PR needed?
movementcurrently provides low-level kinematic quantities such as velocity, speed, and path length, but there is not yet an example showing how these can be used to analyse noisy, irregularly sampled trajectories in a realistic scientific setting.This PR is needed to provide a concrete, research-motivated example that demonstrates trajectory analysis with
movementand motivates higher-level trajectory complexity metrics such as straightness index and tortuosity.What does this PR do?
This PR adds a new example based on synthetic intracellular particle tracking data.
Specifically, it:
movement-compatiblexarraydatasetmovement.kinematicsfunctions such ascompute_velocity,compute_speed, andcompute_path_lengthmovement.kinematicsReferences
Relates to #517.
How has this PR been tested?
The example was run locally from start to finish to confirm that:
movement.kinematicsfunctions execute correctly on the generated dataI also checked that the example uses the current public
movement.kinematicsAPI (compute_velocity,compute_speed,compute_path_length) rather than non-existent helper names.Since this PR adds a new example and does not modify existing library functionality, existing behaviour should be unchanged.
Is this a breaking change?
No. This PR only adds a new example and does not change existing functionality or APIs.
Does this PR require an update to the documentation?
Yes.
This PR adds a new example demonstrating trajectory analysis for noisy and irregularly sampled intracellular particle trajectories. It is intended as example/gallery-style documentation showing how to use existing
movementfunctionality in a realistic scientific context.