Edge detection + binary mask

7 views (last 30 days)
Hugo
Hugo on 24 Dec 2013
Answered: Image Analyst on 24 Dec 2013
I want to create a mask of a thresholded head/neck dicom serie based on detection of the black white boundary. So i want to detect the transition form black to white and determine the positions of this transition after which i would like to create a mask. Does anybody has a suggestion for a method to preform this?

Accepted Answer

Image Analyst
Image Analyst on 24 Dec 2013
You don't need to do edge detection - not sure who told you that. You simply need to do thresholding and hole filling.
binaryImage = grayImage > 50; % or whatever gray level the background is.
mask = imfill(binaryImage, 'holes');

More Answers (0)

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!