我目前正在尝试编写一个程序,其中通过用户输入应用平均过滤器来确定邻域大小和文件类型。我的程序符合并运行,但我得到的输出图像与放入的内容没什么关系。我不确定它的读数是抛弃它还是输出,或者甚至是数学,但我的图像最终是注意到一个大盐和胡椒的形象。这是我的代码,目前我正在应用3x3均值过滤器以使其正常运行
img = ImageIO.read(new File(fileName));
//get dimensions
maxHeight = img.getHeight();
maxWidth = img.getWidth();
//create 2D Array for new picture
int pictureFile[][] = new int [maxHeight][maxWidth];
for( int i = 0; i < maxHeight; i++ ){
for( int j = 0; j < maxWidth; j++ ){
pictureFile[i][j] = img.getRGB( j, i );
}
}
//Apply Mean Filter
for (int v=1; v<=maxHeight-2; v++) {
for (int u=1; u<=maxWidth-2; u++) {
//compute filter result for position (u,v)
int sum = 0;
for (int j=-1; j<=1; j++) {
for (int i=-1; i<=1; i++) {
int p = pictureFile[u+i][v+j];
sum = sum + p;
}
}
int q = (int) (sum / 9);
pictureFile[u][v] = q;
}
}
//Turn the 2D array back into an image
BufferedImage theImage = new BufferedImage(
maxHeight,
maxWidth,
BufferedImage.TYPE_BYTE_GRAY);
int value;
for(int y = 0; y<maxHeight; y++){
for(int x = 0; x<maxWidth; x++){
value = pictureFile[y][x] ;
theImage.setRGB(x, y, value);
}
}
File outputfile = new File("saved.png");
ImageIO.write(theImage, "png", outputfile);
答案 0 :(得分:2)
对int
返回的getRGB()
中打包的ARGB值应用算术运算没有意义。
由于您希望输出为灰度,因此需要将getRGB()
返回的值转换为灰度,将滤镜应用于该灰度值,然后将其转换回ARGB以将其传递给setRGB()
另见: