Skip to content

Commit

Permalink
Move localExtrema to features namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
gselzer committed Sep 3, 2024
1 parent 7d02571 commit 4836d65
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions src/main/java/net/imglib2/algorithm/localextrema/LocalExtrema.java
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public static < P, T > ArrayList< P > findLocalExtrema( final RandomAccessibleIn
* {@code source} accordingly. The returned coordinate list is valid
* for the original {@code source}.
*
* @implNote op name='image.localExtrema', type=Function
* @implNote op name='features.localExtrema', type=Function
* @param source
* Find local extrema within this
* {@link RandomAccessibleInterval}
Expand Down Expand Up @@ -209,7 +209,7 @@ public static < P, T > List< P > findLocalExtrema(
* {@code source} accordingly. The returned coordinate list is valid
* for the original {@code source}.
*
* @implNote op name='image.localExtrema', type=Function
* @implNote op name='features.localExtrema', type=Function
* @param source
* Find local extrema within this
* {@link RandomAccessibleInterval}
Expand Down Expand Up @@ -250,7 +250,7 @@ public static < P, T > List< P > findLocalExtrema(
* The task is parallelized along the longest dimension of
* {@code interval}
*
* @implNote op name='image.localExtrema', type=Function
* @implNote op name='features.localExtrema', type=Function
* @param source
* Find local extrema of the function defined by this
* {@link RandomAccessible}
Expand Down Expand Up @@ -290,7 +290,7 @@ public static < P, T > List< P > findLocalExtrema(
* test for being an extremum can be specified as an implementation of the
* {@link LocalNeighborhoodCheck} interface.
*
* @implNote op name='image.localExtrema', type=Function
* @implNote op name='features.localExtrema', type=Function
* @param source
* Find local extrema of the function defined by this
* {@link RandomAccessible}
Expand Down Expand Up @@ -371,7 +371,7 @@ public static < P, T > List< P > findLocalExtrema(
* expand {@code source} accordingly. The returned coordinate list is
* valid for the original {@code source}.
*
* @implNote op name='image.localExtrema', type=Function
* @implNote op name='features.localExtrema', type=Function
* @param source
* Find local extrema within this
* {@link RandomAccessibleInterval}
Expand All @@ -398,7 +398,7 @@ public static < P, T > List< P > findLocalExtrema(
* {@code source} accordingly. The returned coordinate list is valid
* for the original {@code source}.
*
* @implNote op name='image.localExtrema', type=Function
* @implNote op name='features.localExtrema', type=Function
* @param source
* Find local extrema within this
* {@link RandomAccessibleInterval}
Expand Down Expand Up @@ -433,7 +433,7 @@ public static < P, T > List< P > findLocalExtrema(
*
* The local neighborhood is defined as {@link RectangleShape} with span 1.
*
* @implNote op name='image.localExtrema', type=Function
* @implNote op name='features.localExtrema', type=Function
* @param source
* Find local extrema within this {@link RandomAccessible}
* @param interval
Expand All @@ -458,7 +458,7 @@ public static < P, T > List< P > findLocalExtrema(
* test for being an extremum can be specified as an implementation of the
* {@link LocalNeighborhoodCheck} interface.
*
* @implNote op name='image.localExtrema', type=Function
* @implNote op name='features.localExtrema', type=Function
* @param source
* Find local extrema within this {@link RandomAccessible}
* @param interval
Expand Down Expand Up @@ -532,7 +532,6 @@ public static long[] getRequiredBorderSize( final Shape shape, final int nDim )
* Shrink a {@link RandomAccessibleInterval} symmetrically, i.e. the margin
* is applied both to min and max.
*
* @implNote op name='image.shrink', type=Function
* @param source
* @param margin
* @return
Expand All @@ -548,7 +547,6 @@ public static < T > IntervalView< T > shrink( final RandomAccessibleInterval< T

/**
*
* @implNote op name='image.biggestDimension', type=Function
* @param interval
* @return The biggest dimension of interval.
*/
Expand Down

0 comments on commit 4836d65

Please sign in to comment.