Lines Matching refs:sample

41  *  Each pixel consists of a number of samples. A sample is a datum
57 * not operate on all possible sample types, but generally will work
59 * support a wider variety of sample types.
223 * one sample per array element.
277 * bits per sample, and the TransferTypes are the same.
329 * bits per sample, and the TransferTypes are the same.
515 * bits per sample, and the TransferTypes are the same.
562 * bits per sample, and the TransferTypes are the same.
750 * int array, one sample per array element.
798 * array, one sample per array element.
846 * array, one sample per array element.
894 * Returns the sample in a specified band for the pixel located
902 * @return the sample in a specified band for the specified pixel.
913 * Returns the sample in a specified band
921 * @return the sample in a specified band for the specified pixel.
929 float sample;
930 sample = (float) getSample(x, y, b, data);
931 return sample;
935 * Returns the sample in a specified band
943 * @return the sample in a specified band for the specified pixel.
951 double sample;
953 sample = (double) getSample(x, y, b, data);
954 return sample;
959 * of pixels in an int array, one sample per array element.
1007 * of pixels in a float array, one sample per array element.
1056 * of pixels in a double array, one sample per array element.
1164 * one sample per array element.
1202 * one sample per array element.
1240 * containing one sample per array element.
1277 * Sets a sample in the specified band for the pixel located at (x,y)
1284 * @param s The input sample as an int.
1297 * Sets a sample in the specified band for the pixel located at (x,y)
1300 * float sample to an int and then calls the
1308 * @param s The input sample as a float.
1319 int sample = (int)s;
1321 setSample(x, y, b, sample, data);
1325 * Sets a sample in the specified band for the pixel located at (x,y)
1328 * double sample to an int and then calls the
1336 * @param s The input sample as a double.
1347 int sample = (int)s;
1349 setSample(x, y, b, sample, data);
1354 * of pixels from an int array containing one sample per array element.
1392 * of pixels from a float array containing one sample per array element.
1430 * of pixels from a double array containing one sample per array element.