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