Skip to content

Commit 97fe718

Browse files
committed
Opify stats package
1 parent afc783f commit 97fe718

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/main/java/net/imglib2/algorithm/stats/Max.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ public class Max
4646
{
4747
/**
4848
* Find the maximum value and its position in an {@link IterableInterval}.
49-
*
49+
*
50+
* @implNote op name='findMax', type='java.util.function.Function'
5051
* @param iterable
5152
* input interval.
5253
* @return a cursor positioned on the global maximum. If several maxima with

src/main/java/net/imglib2/algorithm/stats/Min.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ public class Min
4646
{
4747
/**
4848
* Find the minimum value and its position in an {@link IterableInterval}.
49-
*
49+
*
50+
* @implNote op name='findMin', type='java.util.function.Function'
5051
* @param iterable
5152
* input interval.
5253
* @return a cursor positioned on the global minimum. If several minima with

src/main/java/net/imglib2/algorithm/stats/Normalize.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ public class Normalize
4242
{
4343
/**
4444
* Normalize values of an {@link IterableInterval} to the range [min, max].
45-
*
45+
*
46+
* @implNote op name='normalize', type='org.scijava.function.Inplaces.Arity3_1'
4647
* @param iterable
4748
* the interval to be normalized.
4849
* @param min

0 commit comments

Comments
 (0)