Skip to content

Commit

Permalink
Update TrackMate dep version and fix label image export method call.
Browse files Browse the repository at this point in the history
  • Loading branch information
tinevez committed Jul 2, 2024
1 parent 6628043 commit 1b371e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<releaseProfiles>sign,deploy-to-scijava</releaseProfiles>

<CTC-measures.version>1.0.3</CTC-measures.version>
<TrackMate.version>7.12.1</TrackMate.version>
<TrackMate.version>7.13.2</TrackMate.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import fiji.plugin.trackmate.Model;
import fiji.plugin.trackmate.TrackMate;
import fiji.plugin.trackmate.action.LabelImgExporter;
import fiji.plugin.trackmate.action.LabelImgExporter.LabelIdPainting;
import fiji.plugin.trackmate.gui.displaysettings.DisplaySettings;
import fiji.plugin.trackmate.visualization.ViewUtils;
import ij.IJ;
Expand Down Expand Up @@ -78,7 +79,7 @@ public void export(

final boolean exportSpotsAsDots = false;
final boolean exportTracksOnly = false;
final boolean useSpotIDsAsLabels = false;
final LabelIdPainting useSpotIDsAsLabels = LabelIdPainting.LABEL_IS_SPOT_ID;
final ImagePlus labels = LabelImgExporter.createLabelImagePlus(
model,
imp,
Expand Down

0 comments on commit 1b371e5

Please sign in to comment.