Uses of Interface
net.imglib2.histogram.BinMapper1d
Packages that use BinMapper1d
-
Uses of BinMapper1d in net.imglib2.histogram
Classes in net.imglib2.histogram that implement BinMapper1dModifier and TypeClassDescriptionclass
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 BinMapper1dConstructors in net.imglib2.histogram with parameters of type BinMapper1dModifierConstructorDescriptionHistogram1d
(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 BinMapper1dModifierConstructorDescriptionHistogramNd
(Iterable<List<T>> data, List<BinMapper1d<T>> mappers) Construct a histogram from an iterable set of data and a list of bin mapping algorithms.HistogramNd
(List<BinMapper1d<T>> mappers) Construct a histogram from a list of bin mapping algorithms.