Help removing unwanted lines from image and identify spots

5 次查看(过去 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?

采纳的回答

Sean de Wolski
Sean de Wolski 2012-2-2
  1. Threshold to create a binary object
  2. bwareaopen() to get rid of small stuff
  3. imopen to get rid of lines;
  2 个评论
Image Analyst
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 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with Image Processing Toolbox 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by