I have an image to which I want to apply segmentation using local thresholding. This requires the following steps:

  • first segment the image into many sub-images

  • implement local thresholding by computing the average within each sub image

  • convert the image matrix to binary, by comparing each pixel value with the value of the sub-image local average:

    • if the pixel value is above or equal to the local average, then pixel value = 1

    • if the pixel value is below the local average, then pixel value = 0

My image is unit 8 with 240*320 pixels. How can I implement local thresholding to it using MATLAB? I want to compute the average over each 31*31 sub-image.

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted
n=31;
im2=(im>conv2(im,1/(n^2)*ones(n),'same'))
link|improve this answer
please , can i understand what do you mean by: 1/(n^2)*ones(n), – ruaa Jan 26 at 21:05
It's a mean-filter of size n. – Oli Jan 26 at 21:45
thanks alot but my image still have a problem when i implement the above line , and i don't know how to manipulate it you can see my resultant image here 2shared.com/photo/yiw4w0vf/rori.html – ruaa Jan 26 at 22:07
What make you believe that the result is not right? – Oli Jan 26 at 22:41
when i do thinning and skeletonization , the result is not ideal for what i want , the only thing that i want to obtain is the veins in the hand – ruaa Jan 26 at 22:52
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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