- Threshold to create a binary object
- bwareaopen() to get rid of small stuff
- imopen to get rid of lines;
Help removing unwanted lines from image and identify spots
2 次查看(过去 30 天)
显示 更早的评论
After some enhancement I get the following image: http://i44.tinypic.com/2jfwsnd.jpg I want to identify the spots which clearly has a circle like shape, but the lines make it hard. any suggestions?
0 个评论
采纳的回答
Sean de Wolski
2012-2-2
2 个评论
Image Analyst
2012-2-3
Thresholding may not be necessary. Opening may get rid of the small stuff by itself, depending on how small the stuff is you want to get rid of. imopen works on a gray scale image in addition to a binary image. You could then threshold, then multiply the binary image by the gray image to get a gray scale image unaltered except where the lines were. Opening will alter the original even where you maybe don't want it to. Then you could use roifill on that masked image to get a relatively nice "fixed up" gray scale image, if you happen to need or want that. But if your main goal is to measure the round spots and it can be thresholded adequately then might as well threshold as the first step and then get rid of lines, like Sean said.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!