我有一个指纹扫描仪应用程序,它从设备获取手指图像数据。
现在我正在尝试对图像进行二值化。
我正在使用Otsu 的算法对图像进行二值化,即像素值 0 或 255。
阈值使用相同的算法计算在 160 左右。这是我的代码:
public static byte[][] binarizeImage(BufferedImage bfImage){
final int THRESHOLD = 160;
int height = bfImage.getHeight();
int width = bfImage.getWidth();
byte[][] image = new byte[width][height];
for(int i=0; i<width; i++){
for(int j=0; j<height; j++){
Color c = new Color(bfImage.getRGB(i,j));
int red = c.getRed();
int green = c.getGreen();
int blue = c.getBlue();
if(red<THRESHOLD && green<THRESHOLD && blue<THRESHOLD){
image[i][j] = 1;
}else{
image[i][j] = 0;
}
}
}
return image;
}
但生成的图像不是所需的输出。
谁能帮我解决这个问题。