Package net.sourceforge.lept4j
Interface ILeptonica.GPLOT_STYLE
-
- Enclosing interface:
- ILeptonica
public static interface ILeptonica.GPLOT_STYLEgplot.h
Data structures and parameters for generating gnuplot files
We used to support X11 output, but recent versions of gnuplot do not
support the X11 terminal. To get display to your screen, use
GPLOT_PNG output; e.g.,
gplotSimple1(na, GPLOT_PNG, "/tmp/someroot", ...);
l_fileDisplay("/tmp/someroot.png", ...);
enum values
-
-
Field Summary
Fields Modifier and Type Field Description static intGPLOT_DOTSstatic intGPLOT_IMPULSESstatic intGPLOT_LINESstatic intGPLOT_LINESPOINTSstatic intGPLOT_POINTS
-
-
-
Field Detail
-
GPLOT_LINES
static final int GPLOT_LINES
- See Also:
- Constant Field Values
-
GPLOT_POINTS
static final int GPLOT_POINTS
- See Also:
- Constant Field Values
-
GPLOT_IMPULSES
static final int GPLOT_IMPULSES
- See Also:
- Constant Field Values
-
GPLOT_LINESPOINTS
static final int GPLOT_LINESPOINTS
- See Also:
- Constant Field Values
-
GPLOT_DOTS
static final int GPLOT_DOTS
- See Also:
- Constant Field Values
-
-