plot

Show given image, and then plot given GGPlotD context on top of it.

  1. Figure plot(Image image, GGPlotD gg, string title)
  2. Figure plot(Slice!(kind, packs, Iterator) slice, GGPlotD gg, string title)
    version(ggplotd)
    plot
    (
    SliceKind kind
    size_t[] packs
    Iterator
    )
    (
    Slice!(kind, packs, Iterator) slice
    ,
    GGPlotD gg
    ,
    string title = ""
    )
  3. Figure plot(Slice!(kind, packs, Iterator) slice, ImageFormat format, GGPlotD gg, string title)
  4. Figure plot(GGPlotD gg, string title)

Parameters

gg GGPlotD

Plotted data on top of the image.

title string

Title of the window. If none given (default), window is named by "Figure id".

Return Value

Type: Figure

If figure with given title exists already, that figure is returned, otherwise new figure is created and returned.

Throws

ContextNotInitialized

Meta