Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://www.astro.louisville.edu/software/astroimagej/imagej/api/ij/gui/Plot.html
Дата изменения: Thu Dec 2 23:03:11 2010 Дата индексирования: Mon Oct 1 21:34:23 2012 Кодировка: Поисковые слова: п п п п п п п п п п п п п п п п р п р п р п р п р п р п р п р п р п р п р п р п р п р п р п р п р п р п р п р п р п р п |
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object ij.gui.Plot
public class Plot
This class is an image that line graphs can be drawn on.
Field Summary | |
---|---|
static int |
BOTTOM_MARGIN
the margin width below the plot frame |
static int |
BOX
Display points using an box-shaped mark. |
static int |
CIRCLE
Display points using a circle 5 pixels in diameter. |
static int |
CROSS
Display points using an cross-shaped mark. |
static int |
DEFAULT_FLAGS
the default flags |
static int |
DOT
Display points using a single pixel. |
static int |
LEFT_MARGIN
the margin width left of the plot frame (enough for 5-digit numbers such as unscaled 16-bit data |
static int |
LINE
Connect points with solid lines. |
static int |
RIGHT_MARGIN
the margin width right of the plot frame |
static int |
TOP_MARGIN
the margin width above the plot frame |
static int |
TRIANGLE
Display points using an tiangular mark. |
static int |
X
Display points using an X-shaped mark. |
static int |
X_FORCE2GRID
flag for forcing frame to coincide with the grid/ticks in x direction (results in unused space) |
static int |
X_GRID
flag for drawing vertical grid lines for x-axis ticks |
static int |
X_NUMBERS
flag for numeric labels of x-axis ticks |
static int |
X_TICKS
flag for drawing x-axis ticks |
static int |
Y_FORCE2GRID
flag for forcing frame to coincide with the grid/ticks in y direction (results in unused space) |
static int |
Y_GRID
flag for drawing horizontal grid lines for y-axis ticks |
static int |
Y_NUMBERS
flag for numeric labels of x-axis ticks |
static int |
Y_TICKS
flag for drawing x-axis ticks |
Constructor Summary | |
---|---|
Plot(java.lang.String title,
java.lang.String xLabel,
java.lang.String yLabel,
double[] xValues,
double[] yValues)
This version of the constructor accepts double arrays and uses the default flags |
|
Plot(java.lang.String title,
java.lang.String xLabel,
java.lang.String yLabel,
double[] xValues,
double[] yValues,
int flags)
This version of the constructor accepts double arrays. |
|
Plot(java.lang.String title,
java.lang.String xLabel,
java.lang.String yLabel,
float[] xValues,
float[] yValues)
This version of the constructor uses the default flags. |
|
Plot(java.lang.String title,
java.lang.String xLabel,
java.lang.String yLabel,
float[] xValues,
float[] yValues,
int flags)
Construct a new PlotWindow. |
Method Summary | |
---|---|
void |
addErrorBars(double[] errorBars)
Adds error bars to the plot. |
void |
addErrorBars(float[] errorBars)
Adds error bars to the plot. |
void |
addLabel(double x,
double y,
java.lang.String label)
Draws text at the specified location, where (0,0) is the upper left corner of the the plot frame and (1,1) is the lower right corner. |
void |
addPoints(double[] x,
double[] y,
int shape)
Adds a set of points to the plot using double arrays. |
void |
addPoints(float[] x,
float[] y,
int shape)
Adds a set of points to the plot or adds a curve if shape is set to LINE. |
void |
changeFont(java.awt.Font font)
Changes the font. |
void |
draw()
Draws the plot specified in the constructor. |
void |
drawLine(double x1,
double y1,
double x2,
double y2)
|
ImagePlus |
getImagePlus()
Returns the plot as an ImagePlus. |
ImageProcessor |
getProcessor()
Returns the plot as an ImageProcessor. |
void |
setColor(java.awt.Color c)
Changes the drawing color. |
void |
setJustification(int justification)
Sets the justification used by addLabel(), where justification
is ImageProcessor.LEFT, ImageProcessor.CENTER or ImageProcessor.RIGHT. |
void |
setLimits(double xMin,
double xMax,
double yMin,
double yMax)
Sets the x-axis and y-axis range. |
void |
setLineWidth(int lineWidth)
Changes the line width. |
void |
setSize(int width,
int height)
Sets the canvas size (i.e., size of the resulting ImageProcessor). |
PlotWindow |
show()
Displays the plot in a PlotWindow and returns a reference to the PlotWindow. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int CIRCLE
public static final int X
public static final int BOX
public static final int TRIANGLE
public static final int CROSS
public static final int DOT
public static final int LINE
public static final int X_NUMBERS
public static final int Y_NUMBERS
public static final int X_TICKS
public static final int Y_TICKS
public static final int X_GRID
public static final int Y_GRID
public static final int X_FORCE2GRID
public static final int Y_FORCE2GRID
public static final int DEFAULT_FLAGS
public static final int LEFT_MARGIN
public static final int RIGHT_MARGIN
public static final int TOP_MARGIN
public static final int BOTTOM_MARGIN
Constructor Detail |
---|
public Plot(java.lang.String title, java.lang.String xLabel, java.lang.String yLabel, float[] xValues, float[] yValues, int flags)
title
- the window titlexLabel
- the x-axis labelyLabel
- the y-axis labelxValues
- the x-coodinates, or nullyValues
- the y-coodinates, or nullflags
- sum of flag values controlling appearance of ticks, grid, etc.public Plot(java.lang.String title, java.lang.String xLabel, java.lang.String yLabel, float[] xValues, float[] yValues)
public Plot(java.lang.String title, java.lang.String xLabel, java.lang.String yLabel, double[] xValues, double[] yValues, int flags)
public Plot(java.lang.String title, java.lang.String xLabel, java.lang.String yLabel, double[] xValues, double[] yValues)
Method Detail |
---|
public void setLimits(double xMin, double xMax, double yMin, double yMax)
public void setSize(int width, int height)
public void addPoints(float[] x, float[] y, int shape)
x
- the x-coodinatesy
- the y-coodinatesshape
- CIRCLE, X, BOX, TRIANGLE, CROSS, DOT or LINEpublic void addPoints(double[] x, double[] y, int shape)
public void addErrorBars(float[] errorBars)
public void addErrorBars(double[] errorBars)
public void addLabel(double x, double y, java.lang.String label)
public void setJustification(int justification)
justification
is ImageProcessor.LEFT, ImageProcessor.CENTER or ImageProcessor.RIGHT.
public void setColor(java.awt.Color c)
setColor
before draw
.
The frame and labels are always drawn in black.
public void setLineWidth(int lineWidth)
public void drawLine(double x1, double y1, double x2, double y2)
public void changeFont(java.awt.Font font)
public void draw()
public ImageProcessor getProcessor()
public ImagePlus getImagePlus()
public PlotWindow show()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |