索贝尔操作符不适用于矩形图像

我尝试在Java中实现Sobel操作符,但结果只是一些像素的混合。

    int i, j;
    FileInputStream inFile = new FileInputStream(args[0]);
    BufferedImage inImg = ImageIO.read(inFile);
    int width = inImg.getWidth();
    int height = inImg.getHeight();
    int[] output = new int[width * height];
    int[] pixels = inImg.getRaster().getPixels(0, 0, width, height, (int[])null);

    double Gx;
    double Gy;
    double G;

    for(i = 0 ; i < width ; i++ )
    {
        for(j = 0 ; j < height ; j++ )
        {
            if (i==0 || i==width-1 || j==0 || j==height-1)
                G = 0;
            else{
                Gx = pixels[(i+1)*height + j-1] + 2*pixels[(i+1)*height +j] + pixels[(i+1)*height +j+1] -
                        pixels[(i-1)*height +j-1] - 2*pixels[(i-1)*height+j] - pixels[(i-1)*height+j+1];
                Gy = pixels[(i-1)*height+j+1] + 2*pixels[i*height +j+1] + pixels[(i+1)*height+j+1] -
                        pixels[(i-1)*height+j-1] - 2*pixels[i*height+j-1] - pixels[(i+1)*height+j-1];
                G  = Math.hypot(Gx, Gy);
            }

            output[i*height+j] = (int)G;
        }
    }


    BufferedImage outImg = new BufferedImage(width,height,BufferedImage.TYPE_BYTE_GRAY);
    outImg.getRaster().setPixels(0,0,width,height,output);
    FileOutputStream outFile = new FileOutputStream("result.jpg");
    ImageIO.write(outImg,"JPG",outFile);

    JFrame TheFrame = new JFrame("Result");

    JLabel TheLabel = new JLabel(new ImageIcon(outImg));
    TheFrame.getContentPane().add(TheLabel);

    TheFrame.setSize(width, height);

    TheFrame.addWindowListener(new WindowAdapter() {
        public void windowClosing(WindowEvent e) {
            System.exit(0);
        }
    });
    TheFrame.setVisible(true);

它对于方形图像效果很好,但是当宽度!=高度时,结果图像被破坏并且存在一些对角黑线。 :

例:

在这里输入图像描述

结果:

在这里输入图像描述


您的代码似乎期望Raster.getPixels能够在列中生成结果,如下所示:

0  3  6
1  4  7
2  5  8

但我相信它实际上是这样做的,如下所示:

0  1  2
3  4  5
6  7  8

所以基本上,你现在有这样的东西:

pxy = pixels[x * height + y];

你应该有

pxy = pixels[y * width + x];

因此,例如,您有以下方面:

pixels[(i+1)*height + j-1]

你要

pixels[(j-1)*width + i-1]
链接地址: http://www.djcxy.com/p/72515.html

上一篇: Sobel operator doesn't work with rectangle images

下一篇: Applying sobel filter on jpg picture with OpenCV 2.4.10 in Java