Skip to content

Commit

Permalink
Merge branch 'v8' of github.com:trackmate-sc/TrackMate into v8
Browse files Browse the repository at this point in the history
  • Loading branch information
tinevez committed Mar 28, 2024
2 parents 3ea93bf + 2dd870e commit 721182c
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 23 deletions.
44 changes: 29 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@

<fontchooser.version>2.5.2</fontchooser.version>
<javaGeom.version>0.11.1</javaGeom.version>
<imglib2.version>6.1.0</imglib2.version>
<imglib2-mesh.version>1.0.0</imglib2-mesh.version>
<bigvolumeviewer.version>0.3.1</bigvolumeviewer.version>
</properties>

<dependencies>
Expand All @@ -160,7 +161,12 @@
<dependency>
<groupId>sc.fiji</groupId>
<artifactId>labkit-ui</artifactId>
<version>0.3.12-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>net.imagej</groupId>
<artifactId>imagej-legacy</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- ImageJ dependencies -->
Expand All @@ -175,7 +181,7 @@
<dependency>
<groupId>net.imglib2</groupId>
<artifactId>imglib2-mesh</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>${imglib2-mesh.version}</version>
</dependency>
<dependency>
<groupId>net.imagej</groupId>
Expand All @@ -184,18 +190,26 @@
<dependency>
<groupId>sc.fiji</groupId>
<artifactId>bigvolumeviewer</artifactId>
<version>0.3.1</version>
</dependency>
<dependency>
<groupId>org.jogamp.jogl</groupId>
<artifactId>jogl-all-main</artifactId>
<version>2.3.2</version>
</dependency>
<dependency>
<groupId>org.jogamp.gluegen</groupId>
<artifactId>gluegen-rt-main</artifactId>
<version>2.3.2</version>
</dependency>
<version>${bigvolumeviewer.version}</version>
</dependency>
<dependency>
<groupId>org.jogamp.jogl</groupId>
<artifactId>jogl-all</artifactId>
</dependency>
<dependency>
<groupId>org.jogamp.gluegen</groupId>
<artifactId>gluegen-rt</artifactId>
</dependency>
<dependency>
<groupId>org.jogamp.gluegen</groupId>
<artifactId>gluegen-rt</artifactId>
<classifier>${scijava.natives.classifier.gluegen}</classifier>
</dependency>
<dependency>
<groupId>org.jogamp.jogl</groupId>
<artifactId>jogl-all</artifactId>
<classifier>${scijava.natives.classifier.jogl}</classifier>
</dependency>

<!-- ImgLib2 dependencies -->
<dependency>
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/fiji/plugin/trackmate/detection/MaskUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,6 @@ public static final long getThreshold( final Histogram1d< ? > hist )
* the type of the input image. Must be real, scalar.
* @param input
* the input image.
* @param interval
* the interval in the input image to analyze.
* @param threshold
* the threshold to apply to the input image.
* @param numThreads
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,6 @@ public class SpotMeshUtils
* @param simplify
* if <code>true</code> the meshes will be post-processed to be
* smoother and contain less points.
* @param smoothingScale
* if strictly larger than 0, the input will be smoothed before
* creating the contour, resulting in smoother contours. The
* scale value sets the (Gaussian) filter radius and is specified
* in physical units. If 0 or lower than 0, no smoothing is
* applied.
* @param qualityImage
* the image in which to read the quality value.
* @return a list of spots, with meshes.
Expand Down
1 change: 1 addition & 0 deletions src/main/java/fiji/plugin/trackmate/util/TMUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -949,6 +949,7 @@ public static double standardDeviation( final DoubleArray data )
* Returns a string of the name of the image without the extension, with the
* full path
*
* @param settings A {@link Settings} object referencing the image
* @return full name of the image without the extension
*/
public static String getImagePathWithoutExtension( final Settings settings )
Expand Down

0 comments on commit 721182c

Please sign in to comment.