public abstract class VisualizationUtil
extends java.lang.Object
Constructor and Description |
---|
VisualizationUtil() |
Modifier and Type | Method and Description |
---|---|
static ij.gui.Plot |
createComplexPowerPlot(double[] yValues) |
static ij.gui.Plot |
createComplexPowerPlot(double[] yValues,
java.lang.String title) |
static ij.gui.Plot |
createHalfComplexPowerPlot(double[] yValues,
double[] xValues,
java.lang.String title) |
static ij.gui.Plot |
createHalfComplexPowerPlot(double[] yValues,
java.lang.String title) |
static ij.gui.Plot |
createPlot(double[] yValues) |
static ij.gui.Plot |
createPlot(double[] xValues,
double[] yValues,
java.lang.String title,
java.lang.String xLabel,
java.lang.String yLabel) |
static ij.gui.Plot |
createPlot(double[] yValues,
java.lang.String title,
java.lang.String xLabel,
java.lang.String yLabel) |
static ij.gui.Plot |
createPlot(float[] yValues) |
static ij.gui.Plot |
createPlot(java.lang.String title,
double[] yValues) |
static ij.gui.Plot |
createPlot(java.lang.String title,
float[] yValues) |
static ij.gui.Plot |
createScatterPlot(double[] xCoords,
double[] yCoords,
Function func) |
static ij.gui.Plot |
createScatterPlot(java.lang.String title,
double[] xCoords,
double[] yCoords)
Creates a scatter plot for two given double arrays with the given title.
|
static ij.gui.Plot |
createScatterPlot(java.lang.String title,
double[] xCoords,
double[] yCoords,
Function func) |
static ij.gui.Plot |
createSplinePlot(BSpline spline) |
static ij.gui.Plot |
plotCompareGrayValues(ij.process.ImageProcessor before,
ij.process.ImageProcessor after,
Function func) |
static ij.ImagePlus |
showGrid2D(Grid2D grid,
java.lang.String title) |
static ij.ImagePlus |
showGrid3DX(Grid3D image) |
static ij.ImagePlus |
showGrid3DX(Grid3D image,
java.lang.String title) |
static ij.ImagePlus |
showGrid3DZ(Grid3D image) |
static ij.ImagePlus |
showGrid3DZ(Grid3D image,
java.lang.String title) |
static ij.ImagePlus |
showImageProcessor(ij.process.ImageProcessor image) |
static ij.ImagePlus |
showImageProcessor(ij.process.ImageProcessor image,
java.lang.String title) |
public static ij.gui.Plot createPlot(java.lang.String title, double[] yValues)
public static ij.gui.Plot createPlot(java.lang.String title, float[] yValues)
public static ij.gui.Plot createPlot(float[] yValues)
public static ij.gui.Plot createPlot(double[] yValues)
public static ij.gui.Plot createSplinePlot(BSpline spline)
public static ij.gui.Plot createPlot(double[] yValues, java.lang.String title, java.lang.String xLabel, java.lang.String yLabel)
public static ij.gui.Plot createPlot(double[] xValues, double[] yValues, java.lang.String title, java.lang.String xLabel, java.lang.String yLabel)
public static ij.gui.Plot createComplexPowerPlot(double[] yValues, java.lang.String title)
public static ij.gui.Plot createHalfComplexPowerPlot(double[] yValues, java.lang.String title)
public static ij.gui.Plot createHalfComplexPowerPlot(double[] yValues, double[] xValues, java.lang.String title)
public static ij.gui.Plot createComplexPowerPlot(double[] yValues)
public static ij.ImagePlus showGrid2D(Grid2D grid, java.lang.String title)
public static ij.ImagePlus showImageProcessor(ij.process.ImageProcessor image, java.lang.String title)
public static ij.ImagePlus showImageProcessor(ij.process.ImageProcessor image)
public static ij.ImagePlus showGrid3DX(Grid3D image, java.lang.String title)
public static ij.ImagePlus showGrid3DX(Grid3D image)
public static ij.ImagePlus showGrid3DZ(Grid3D image, java.lang.String title)
public static ij.ImagePlus showGrid3DZ(Grid3D image)
public static ij.gui.Plot plotCompareGrayValues(ij.process.ImageProcessor before, ij.process.ImageProcessor after, Function func)
public static ij.gui.Plot createScatterPlot(double[] xCoords, double[] yCoords, Function func)
public static ij.gui.Plot createScatterPlot(java.lang.String title, double[] xCoords, double[] yCoords, Function func)
public static ij.gui.Plot createScatterPlot(java.lang.String title, double[] xCoords, double[] yCoords)
title
- The TitlexCoords
- the array for the x-coordinatesyCoords
- the array for the y-coordinates