Multiple thresholding to segment aorta

4 次查看(过去 30 天)
I need to segment the white circle part and the grey part around it. I've tried smoothing it and using boundary tracing but I'm getting terrible results.
Any help would be greatly appreciated

采纳的回答

Image Analyst
Image Analyst 2012-8-19
Shouldn't be too hard unless the noise is a problem. I'd do these steps:
  1. Reduce noise - there are a variety of methods.
  2. Threshold at a high level to find bright things.
  3. Use bwareaopen to get rid of small objects.
  4. Call bwlabel and regionprops and use perimeter^2/(4*pi*area) to find round objects.
  5. Use ismember() to keep the round objects only. Now you have just the white circle part.
  6. Threshold at a medium level to get medium bright things.
  7. Use watershed if necessary to split apart touching blobs.
  8. Use imreconstruct to get only the gray part that contains the white circle.
Here are some examples to help you:

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by