Class HistogramPlot

java.lang.Object
ij.ImagePlus
imagingbook.common.histogram.HistogramPlot
All Implemented Interfaces:
Measurements, ImageObserver, Cloneable

public class HistogramPlot extends ImagePlus
Defines a simple image window to display histograms. This is a sub-class of ImagePlus (similar to ij.gui.HistogramPlot).
Version:
2022/12/07
  • Constructor Details

    • HistogramPlot

      public HistogramPlot(double[] nH, String title)
      Constructor for a normalized discrete distribution.
      Parameters:
      nH - a normalized discrete distribution with values in [0,1]
      title - the window title to be displayed (may be null)
    • HistogramPlot

      public HistogramPlot(int[] h, String title)
      Constructor for a discrete distribution.
      Parameters:
      h - a discrete distribution (histogram) with arbitrary values
      title - the window title to be displayed (may be null)