本文整理匯總了Java中java.awt.image.WritableRaster.getSample方法的典型用法代碼示例。如果您正苦於以下問題:Java WritableRaster.getSample方法的具體用法?Java WritableRaster.getSample怎麽用?Java WritableRaster.getSample使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類java.awt.image.WritableRaster
的用法示例。
在下文中一共展示了WritableRaster.getSample方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: hashChunk
import java.awt.image.WritableRaster; //導入方法依賴的package包/類
private static long hashChunk(BufferedImage chunk)
{
WritableRaster r = chunk.getRaster();
long hash = 0;
int avg = 0;
for(int x=0;x<8;x++)
{
for(int y=0;y<8;y++)
{
avg += r.getSample(x, y, 0);
}
}
avg /= 64;
for(int x=0;x<8;x++)
{
for(int y=0;y<8;y++)
{
if(r.getSample(x, y, 0)<avg)
{
hash |= 1;
}
hash<<=1;
}
}
return hash;
}
示例2: isBlack
import java.awt.image.WritableRaster; //導入方法依賴的package包/類
public static boolean isBlack(BufferedImage image, int x, int y) {
if (image.getType() == BufferedImage.TYPE_BYTE_BINARY) {
WritableRaster raster = image.getRaster();
int pixelRGBValue = raster.getSample(x, y, 0);
if (pixelRGBValue == 0) {
return true;
} else {
return false;
}
}
int luminanceValue = 140;
return isBlack(image, x, y, luminanceValue);
}