CImageView:PlotCursorColRange
The PlotCursorColRange method plots the range of columns inside the image cursor on a displayed image.
CPlotView:PlotCursorColRange( CImageView ) |
CImageView is a reference to the class object where the image is displayed.
This method works with a displayed image. It creates a graph of luminance value versus row number, with one plot series for each column. The column region is specified by the limits of the image cursor. The cursor region can be set using the SetCursorRect method or related methods.
Assume that a CImageView object named V exists. The following script fragment plots 100 columns, from columns 100 through 199, over rows 300 through 500 for the currently displayed image.
R = CRect:new() |
-- create a CRect object |
R:Set(100,199,300,500) |
-- specify the region to plot |
V:SetCursorRect(R) |
-- assign the CRect to the cursor |
P = CPlotView:new() |
-- create a CPlotView |
P:PlotCursorColRange(V) |
-- make the plot |
CPlotView, CImageView, SetCursorRect, PlotCursorRowRange, Image Coordinate System, Subpixel Coordinate Definition, PlotCursorColAbg