how write a matlab code for adaptive thersholding
3 次查看(过去 30 天)
显示 更早的评论
how write a matlab code for adaptive thersholding
1 个评论
Walter Roberson
2012-5-22
Duplicate is at http://www.mathworks.com/matlabcentral/answers/39059-matlab-code-for-adaptive-thersholding
回答(2 个)
Matt Kindig
2012-5-22
This is a pretty big question. Is there a particular algorithm that you are trying to implement? A simple Google search for "Matlab adaptive thresholding" yields a bunch of results--you could just try one of those.
0 个评论
Stephen
2012-5-22
that depends on a lot of things, but you could try using im2col to analyze your image in discrete blocks and apply whatever function you want to get the binary result. You could also do like three different convolutions with different kernels and use the residuals to index which result should construct what part of the final binary result. You could also use expectation maximization to guess at the proper threshold for a section of the image. Or you could use a level set method or graph cut to segment your image. what type of image do you want to threshold? that would help you chose the code.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Segmentation and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!