Help removing unwanted lines from image and identify spots

2 ビュー (過去 30 日間)
Elad
Elad 2012 年 2 月 2 日
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 件のコメント
Elad
Elad 2012 年 2 月 3 日
Thanks!
that really pointed me to the right direction.
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 Center および File ExchangeGet 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