-
Notifications
You must be signed in to change notification settings - Fork 1
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
Create converter for Trackmate files #5
Comments
Extracting other features (not directly in CTC file)Inter-frame time (i.e. time in seconds that each frame represents)
Right-censoringThere doesn't seem to be much information that could be relevant to right-censoring. There are no explicit features for a cell going out of frame vs a cell dying or the track being stopped for another reason. See the summary of trackmate features
Missing framesAgain, not much information here that could be relevant. The tracks table does have |
Manual labelling of dead / right-censoredTrackmate has the
|
Existing CTC converterRunning the CTC converter and browsing through the output, shows that it will disregard any 'gaps' i.e. edges that span more time than a single frame. This means that if a track contains edges that bridge over small gaps (e.g. from a failed detection on one frame) the track will be split into two in the final file. I don't think this is what we want? (I assume this is done for the image export in CTC format - this will need some kind of segmentation / overlay for every frame. For us, we just want to represent the trackmate tracks as close as possible in the Additional issue: the labels of the tracks in the CTC export don't match ids in the original file. To add information about e.g. manually labelled dead cells we'd have to be able to know which trackmate track corresponds to which row in the CTC table. Challenging with just the start / end frame to go on - would be ambiguous if multiple tracks shared the same... |
Closing as complete |
Create a converter for trackmate output files to the cell tracking challenge format.
Output files
Trackmate has two types of output files:
.xml
file storing tracks/spots + all information about the trackmate session (made by clicking thesave
button in the bottom left)csv
files for edges, spots and tracks (made by clicking theTracks
button thenExport to csv
for each)The
xml
file seems to contain all the information of thecsv
files plus some extras. Thecsv
files seem to be provided just to give a more convenient output.Existing converters
There's an existing CTC converter that comes by default with Trackmate. Can only set the location it saves to, and whether it is gold truth, silver truth or results. Seems to always output both images + text files of tracks (image output can be slow, ideally this could be turned off)
The text was updated successfully, but these errors were encountered: