Uses of Interface
net.imglib2.histogram.BinMapper1d
-
Packages that use BinMapper1d Package Description net.imglib2.histogram -
-
Uses of BinMapper1d in net.imglib2.histogram
Classes in net.imglib2.histogram that implement BinMapper1d Modifier and Type Class Description class
Integer1dBinMapper<T extends IntegerType<T>>
Maps integer values into a 1-d set of bins.class
Real1dBinMapper<T extends RealType<T>>
Maps real values into a 1-d set of bins.Methods in net.imglib2.histogram that return BinMapper1d Modifier and Type Method Description BinMapper1d<T>
BinMapper1d. copy()
Returns a copy of thisBinMapper1d<T>
.Constructors in net.imglib2.histogram with parameters of type BinMapper1d Constructor Description Histogram1d(java.lang.Iterable<T> data, BinMapper1d<T> mapper)
Construct a histogram from an iterable set of data and a bin mapping algorithm.Histogram1d(BinMapper1d<T> mapper)
Construct a histogram from a bin mapping algorithm.Constructor parameters in net.imglib2.histogram with type arguments of type BinMapper1d Constructor Description HistogramNd(java.lang.Iterable<java.util.List<T>> data, java.util.List<BinMapper1d<T>> mappers)
Construct a histogram from an iterable set of data and a list of bin mapping algorithms.HistogramNd(java.util.List<BinMapper1d<T>> mappers)
Construct a histogram from a list of bin mapping algorithms.
-