A very simple cell tracker from labeled images
Project description
Simple-Track-Builder
A very simple cell tracker from labeled images
Installation
You can install Simple-Track-Builder via pip:
pip install Simple-Track-Builder
To install latest development version :
pip install git+https://github.com/GuignardLab/Simple-Track-Builder.git
Usage
Once installed, Simple-Track-Builder can be used multiple ways.
Command line call
Simple-Track-Builder can be called in the terminal the following way:
simple-track-builder --pathes p1.tiff p2.tiff [...] --output out_test.lT
where 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.lT
If 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 --help
Python
Simple-Track-Builder can be called in Python 2 different ways:
Direct function
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.
Class
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)
Contributing
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.
License
Distributed under the terms of the MIT license, "Simple-Track-Builder" is free and open source software
Issues
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file Simple-Track-Builder-0.0.2.tar.gz.
File metadata
- Download URL: Simple-Track-Builder-0.0.2.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
405413060261785a1f7f7d56393f1c2e7161884bca123b045088041d5044f20c
|
|
| MD5 |
eba4e932c2a105dd52202d5f73148d86
|
|
| BLAKE2b-256 |
c8c421cda0235b7342d95a06d2fde0412caf78cb0d5bc07724925852f35214ee
|
File details
Details for the file Simple_Track_Builder-0.0.2-py3-none-any.whl.
File metadata
- Download URL: Simple_Track_Builder-0.0.2-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29ced17f4a3101f3897f968429292a6ca1835811f87b69a061f34d13c1e04e05
|
|
| MD5 |
90aa0ef434fc6fe6a3d91bbd99758111
|
|
| BLAKE2b-256 |
054ad0085ad7c374de8ec251182079ae20ae0c1587190e7cbe3797a058c689b8
|