Reduction of parameter requirements
The goal was to reduce the parameter requirements :
- All the objects
Img<T>
used as parameters have been replaced byRandomAccessibleInterval<T>
orIterableInterval<T>
objects. - A parameter
ImgFactory<T>
has been added when the creation of anImg<T>
as an output was necessary. - The class
Histogram<T>
from packagenet.imglib2.algorithm.stats
has been copied (class HistogramZ) and the constructor parameterImg<T>
has been change intoIterableInterval<T>
.