Skip to content

Commit

Permalink
Fix incorrect documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
tinevez committed Nov 29, 2023
1 parent 4c42e7d commit dc27fe4
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
*/
package fiji.plugin.trackmate.detection;

import fiji.plugin.trackmate.util.TMUtils;
import net.imglib2.Interval;
import net.imglib2.type.NativeType;
import net.imglib2.type.numeric.RealType;
Expand All @@ -46,11 +47,13 @@ public interface SpotGlobalDetectorFactory< T extends RealType< T > & NativeType
*
* @param interval
* the interval that determines the region in the source image to
* operate on. This must <b>not</b> have a dimension for time
* (<i>e.g.</i> if the source image is 2D+T (3D), then the
* interval must be 2D; if the source image is 3D without time,
* then the interval must be 3D).
* operate on. This <b>must</b> have a dimension for time, but
* not for channels (<i>e.g.</i> if the source image is 2D+T
* (3D), then the interval must be 3D; if the source image is 3D
* without time, then the interval must be 4D).
* @return a new detector.
* @see TMUtils#getIntervalWithTime(net.imagej.ImgPlus,
* fiji.plugin.trackmate.Settings)
*/
public SpotGlobalDetector< T > getDetector( final Interval interval );

Expand Down

0 comments on commit dc27fe4

Please sign in to comment.