-
Notifications
You must be signed in to change notification settings - Fork 1
145 option to export segmentation relabeled by track #160
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
base: main
Are you sure you want to change the base?
145 option to export segmentation relabeled by track #160
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #160 +/- ##
==========================================
- Coverage 90.63% 90.18% -0.45%
==========================================
Files 57 57
Lines 2850 2894 +44
==========================================
+ Hits 2583 2610 +27
- Misses 267 284 +17 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
cmalinmayor
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approve once docs are updated :) you can merge when it's done
| column: str, | ||
| time_key: str = "t", | ||
| id_key: str = "id", | ||
| ) -> np.ndarray: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Docstring :)
| time_key=cast(str, column_map["time"]), | ||
| id_key=cast(str, column_map["id"]), | ||
| ) | ||
| tifffile.imwrite(seg_path, relabeled_seg, compression="deflate") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add to docstring and user docs that it writes as tiff
Also includes option to export the Tracklet ID colors.
Closes funkelab/motile_tracker#145