adaptive local global thresholding
显示 更早的评论
Hi all trying to figure out how to do a simple adaptive and a local thresholding for T=[30,25,67,49,96]
can someone guide me ASAP with a simple thresholding code that can do this?
please!!
Thanks
4 个评论
Rik
2019-8-7
This question has the same problem as your previous question: it is unclear what you want to do exactly. It looks the same as your previous question, what makes this different?
Also your question is not urgent and using thing like "ASAP" should be avoided, the reason for that is explained here.
Matpar
2019-8-7
Rik
2019-8-7
You don't flag your questions as urgent. If you need it done so fast that you can't wait for free help, you need to hire a consultant. I doubt your course started with the practical you posted here. I would suggest you look at the instructions you already had and don't doublepost questions.
Also, using a lot of exclamation points comes across as shouty and rude. It probably discourages people from helping you, just like using phrases like 'ASAP' and 'please help me fast'. Your bad planning is your problem, don't push others if you started late. If the amount of time for your practical is unreasonable, talk to your teacher, and if he/she is unreasonable, talk to the dean.
You posted 4 questions in about 3 days and have gotten multiple comments and answers. You are not being ignored.
回答(1 个)
Kritika Bansal
2019-8-20
Hi,
To perform adaptive thresholding, you can use imbinarize in combination with adaptthresh function of MATLAB as follows:
T = adaptthresh(I);
BW = imbinarize(I, T);
The above 2 steps can also be combined into a single step as:
BW = imbinarize(I, ‘adaptive’);
If you have an RGB image, you may need to convert it to grayscale using rgb2gray() function and then use imbinarize. This is because imbinarize doesn’t binarize ever channel separately.
For more information on these two functions, you can refer to the documentation links below:
类别
在 帮助中心 和 File Exchange 中查找有关 Image Segmentation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!