Package view

Examples of view.HistogramWindow$DrawPanel


   * @param data     Histogram data
   * @param channel  Color channel (e.g., "h", "s", "v", "rgb", "r", ...)
   */
  public void showHistogram(int[] data, String channel, float time)
  {
    HistogramWindow histogramWindow = new HistogramWindow(this,
      channel.toUpperCase() + " - " + String.valueOf(time),
      data, channel);
    this.windows.add(histogramWindow);
  } // showHistogram(String, int[], String)
View Full Code Here

TOP

Related Classes of view.HistogramWindow$DrawPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.