CameraAPI.GetImageCol( col, row1, row2, cols );
long col |
The column to get pixel data for. |
long row1 |
The start row. Range: 0 to image rows minus 1. |
long row2 |
The end row. Range: 0 to image rows minus 1. |
long cols |
The total number of columns in the image. |
Point[] - An array of java.awt.Point data
that represents the image column data. Each point in the array contains
an x value (Point.x) and a y value (Point.y). The x data represents
the row number in the column and the y data represents the 16-bit
pixel value.
Retrieves the column pixel values for the specified column, starting
at row1 and ending at row2. Throws a java.lang.Exception if an error
occurs, which can be caught using
try/catch block.