CameraAPI.GetImageStats( row1, row2, col1, col2, cols );
CameraAPI.GetImageStats( filename, row1, row2, col1, col2 );
String filename |
A FITS filename. |
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 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. |
ImageStats - The image statistics: min, max,
mean, variance, and standard deviation. See
ImageStats for details.
Calculates the image statistics (min, max, mean, variance, standard
deviation) for the specified row and column range. Throws a
java.lang.Exception if an error occurs, which can be caught using
try/catch block.