A very simple cell tracker from labeled images
You can install Simple-Track-Builder via pip:
pip install Simple-Track-BuilderTo install latest development version :
pip install git+https://github.com/GuignardLab/Simple-Track-Builder.gitOnce installed, Simple-Track-Builder can be used multiple ways.
Simple-Track-Builder can be called in the terminal the following way:
simple-track-builder --pathes p1.tiff p2.tiff [...] --output out_test.lTwhere p1.tiff, p2.tiff, ... are the pathes to all the images to use in temporal order, from start to finish.
Instead of informing all the pathes manually, one can inform the path format, the starting and ending times:
simple-track-builder --path-format p{t:d}.tiff --start-time 0 --end-time 10 --output out_test.lTIf necessary, the background can be informed using the --background parameter.
Finally, a help for simple-track-builder can be called the following way:
simple-track-builder --helpSimple-Track-Builder can be called in Python 2 different ways:
from simple_track_builder import build_tracks
pathes = ["p1.tiff", "p2.tiff", ...]
out = "test.lT"
build_track(label_image_list=pathes, background=0, out=out)label_image_list can also take np.ndarrays:
from simple_track_builder import build_tracks
from tifffile import imread
pathes = [imread("p1.tiff"), imread("p2.tiff"), ...]
out = "test.lT"
build_track(label_image_list=pathes, background=0, out=out)That can be usefull when you are running tests and do not want to reload the images each time.
For the most modularity, one can use the class itself:
from simple_track_builder import SimpleTrackBuilder
pathes = ["p1.tiff", "p2.tiff", ...]
lT = SimpleTrackBuilder(pathes, background=0)
lT.build_lineages()
lT.write("out.lT")lT is a LineageTree instance that has all their properties (see there)
Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.
Distributed under the terms of the MIT license, "Simple-Track-Builder" is free and open source software
If you encounter any problems, please file an issue along with a detailed description.
This library was generated using Cookiecutter and a custom made template based on @napari's cookiecutter-napari-plugin template.