Skip to content

Commit 4836d65

Browse files
committed
Move localExtrema to features namespace
1 parent 7d02571 commit 4836d65

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

src/main/java/net/imglib2/algorithm/localextrema/LocalExtrema.java

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public static < P, T > ArrayList< P > findLocalExtrema( final RandomAccessibleIn
167167
* {@code source} accordingly. The returned coordinate list is valid
168168
* for the original {@code source}.
169169
*
170-
* @implNote op name='image.localExtrema', type=Function
170+
* @implNote op name='features.localExtrema', type=Function
171171
* @param source
172172
* Find local extrema within this
173173
* {@link RandomAccessibleInterval}
@@ -209,7 +209,7 @@ public static < P, T > List< P > findLocalExtrema(
209209
* {@code source} accordingly. The returned coordinate list is valid
210210
* for the original {@code source}.
211211
*
212-
* @implNote op name='image.localExtrema', type=Function
212+
* @implNote op name='features.localExtrema', type=Function
213213
* @param source
214214
* Find local extrema within this
215215
* {@link RandomAccessibleInterval}
@@ -250,7 +250,7 @@ public static < P, T > List< P > findLocalExtrema(
250250
* The task is parallelized along the longest dimension of
251251
* {@code interval}
252252
*
253-
* @implNote op name='image.localExtrema', type=Function
253+
* @implNote op name='features.localExtrema', type=Function
254254
* @param source
255255
* Find local extrema of the function defined by this
256256
* {@link RandomAccessible}
@@ -290,7 +290,7 @@ public static < P, T > List< P > findLocalExtrema(
290290
* test for being an extremum can be specified as an implementation of the
291291
* {@link LocalNeighborhoodCheck} interface.
292292
*
293-
* @implNote op name='image.localExtrema', type=Function
293+
* @implNote op name='features.localExtrema', type=Function
294294
* @param source
295295
* Find local extrema of the function defined by this
296296
* {@link RandomAccessible}
@@ -371,7 +371,7 @@ public static < P, T > List< P > findLocalExtrema(
371371
* expand {@code source} accordingly. The returned coordinate list is
372372
* valid for the original {@code source}.
373373
*
374-
* @implNote op name='image.localExtrema', type=Function
374+
* @implNote op name='features.localExtrema', type=Function
375375
* @param source
376376
* Find local extrema within this
377377
* {@link RandomAccessibleInterval}
@@ -398,7 +398,7 @@ public static < P, T > List< P > findLocalExtrema(
398398
* {@code source} accordingly. The returned coordinate list is valid
399399
* for the original {@code source}.
400400
*
401-
* @implNote op name='image.localExtrema', type=Function
401+
* @implNote op name='features.localExtrema', type=Function
402402
* @param source
403403
* Find local extrema within this
404404
* {@link RandomAccessibleInterval}
@@ -433,7 +433,7 @@ public static < P, T > List< P > findLocalExtrema(
433433
*
434434
* The local neighborhood is defined as {@link RectangleShape} with span 1.
435435
*
436-
* @implNote op name='image.localExtrema', type=Function
436+
* @implNote op name='features.localExtrema', type=Function
437437
* @param source
438438
* Find local extrema within this {@link RandomAccessible}
439439
* @param interval
@@ -458,7 +458,7 @@ public static < P, T > List< P > findLocalExtrema(
458458
* test for being an extremum can be specified as an implementation of the
459459
* {@link LocalNeighborhoodCheck} interface.
460460
*
461-
* @implNote op name='image.localExtrema', type=Function
461+
* @implNote op name='features.localExtrema', type=Function
462462
* @param source
463463
* Find local extrema within this {@link RandomAccessible}
464464
* @param interval
@@ -532,7 +532,6 @@ public static long[] getRequiredBorderSize( final Shape shape, final int nDim )
532532
* Shrink a {@link RandomAccessibleInterval} symmetrically, i.e. the margin
533533
* is applied both to min and max.
534534
*
535-
* @implNote op name='image.shrink', type=Function
536535
* @param source
537536
* @param margin
538537
* @return
@@ -548,7 +547,6 @@ public static < T > IntervalView< T > shrink( final RandomAccessibleInterval< T
548547

549548
/**
550549
*
551-
* @implNote op name='image.biggestDimension', type=Function
552550
* @param interval
553551
* @return The biggest dimension of interval.
554552
*/

0 commit comments

Comments
 (0)