我是 Android 新手,需要通过仅收集黑色像素(即 R = 0、G = 0 和 B = 0)来处理位图以将像素信息提取到多维数组中。我注意到有一种GetPixel(x, y)
方法可以显然很慢,我需要这样的东西。但是我不知道如何GetPixel(x, y)
使用来自 GetPixels() 的信息来实现更好的方法。我目前正在尝试这样的事情:
private static int[][] GetPixels(Bitmap bmp)
{
int height = bmp.getHeight();
int width = bmp.getWidth();
int length = width * height;
int[] pixels = new int[length];
bmp.getPixels(pixels, 0, 0, 0, 0, width, height);
int[][]result = new int[width][height];
for(int pixel = 0, x = 0, y = 0; pixel < pixels.length; pixel += 4)
{
int argb = pixels[pixel];//how to access pixel information?
result[x][y] = argb;//store only black pixels??
x++;
if(y == width)
{
x = 0;
y++;
}
}
return result;
}