Janelia-Trackathon-2023 / traccuracy

Utilities for computing common accuracy metrics on cell tracking challenge solutions with ground truth
https://traccuracy.readthedocs.io
Other
25 stars 7 forks source link

Eliminate copy of graph objects to improve memory utilization #166

Open msschwartz21 opened 2 weeks ago

msschwartz21 commented 2 weeks ago

There are at least two places where we create copies of the TrackingGraph:

We should eliminate both of these instances. The first is easy, but the second may require more thought since we are essentially putting duplicate labels on the graph.

msschwartz21 commented 14 hours ago

74 eliminated the copy of the graph that was created by the matcher, but copies are still created during correcting division frame shift errors.