Module org.scijava.ops.image
Class HistogramCreate<T extends RealType<T>>
- java.lang.Object
-
- org.scijava.ops.image.image.histogram.HistogramCreate<T>
-
- All Implemented Interfaces:
BiFunction<Iterable<T>,Integer,Histogram1d<T>>
public class HistogramCreate<T extends RealType<T>> extends Object implements BiFunction<Iterable<T>,Integer,Histogram1d<T>>
- Author:
- Martin Horn (University of Konstanz), Christian Dietz (University of Konstanz)
- Implementation Note:
- op names='image.histogram'
-
-
Field Summary
Fields Modifier and Type Field Description static intDEFAULT_NUM_BINS
-
Constructor Summary
Constructors Constructor Description HistogramCreate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Histogram1d<T>apply(Iterable<T> input, Integer numBins)TODO-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.function.BiFunction
andThen
-
-
-
-
Field Detail
-
DEFAULT_NUM_BINS
public static final int DEFAULT_NUM_BINS
- See Also:
- Constant Field Values
-
-
Method Detail
-
apply
public Histogram1d<T> apply(Iterable<T> input, Integer numBins)
TODO- Specified by:
applyin interfaceBiFunction<Iterable<T extends RealType<T>>,Integer,Histogram1d<T extends RealType<T>>>- Parameters:
input- the iterable to feed into theHistogram1dnumBins- the number of bins in the resultingHistogram1d- Returns:
- a histogram
-
-