We are trying to get Bitmap image that used Erosion function in Image Processing but we dont get any result in screen. Our code is below waiting for helps. Thanks

    public int[] Erosion(Bitmap binaryimage, int[][] structure) 
{
    // TODO Auto-generated method stub
    int picw =  binaryimage.getWidth();  
    int pich =  binaryimage.getHeight(); 
    int[] pixels = new int [picw * pich];
    int[] output = new int[picw * pich];
    int sw = structure[0].length; // columns
    int sh = structure.length; // rows
    binaryimage.getPixels(pixels,0,picw,0,0,picw,pich);
    for(int y=sh/2; y<pich-sh/2; y++)
    {
        for(int x=sw/2;x<picw-sw/2;x++)
        {
            int index = y*picw+ x;
            output[index]=1;
            if(pixels[index]==0)
                {
                output[index]= 0;
                }
            else
            for (int i=-sh/2; i<= sh/2; i++)
            {
                for(int j=-sw/2; j<=sw/2; j++)
                {
                    int index2=(x+j)+(y+i)*picw;
                    if(pixels[index2]==0)
                    {
                        output[index]=0;
                    }
                }
            }
        }
    }
    return output;
}
link|improve this question

50% accept rate
Is there a question? On SO you should ask a specific question: stackoverflow.com/faq – Peter Knego Apr 29 '11 at 17:02
You should also accept an answer if it helped you. – Haphazard Apr 29 '11 at 17:04
After function done, we dont get image that is, this function doesnt work properly so we are expecting to you show our mistake or absence related to algorithm. That is the question this function doesnt work What is the reason? Ok? Do you understand?? – barzos Apr 29 '11 at 17:13
feedback

1 Answer

You will have to refresh the picture being displayed after the Erosion is complete.

[Edit] Also note that the Erosion method does not modify the actual Bitmap. It gives you an array output that you may be able to apply to the Bitmap afterwards.

link|improve this answer
How can I refresh picture ? I dont know – barzos Apr 29 '11 at 17:15
I can't say without seeing the code. – Haphazard Apr 29 '11 at 17:26
Code is in above friend – barzos Apr 29 '11 at 17:30
Right, I need the Android code that isn't working for you. Also, please see my updated response above. – Haphazard Apr 29 '11 at 17:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.