Can any one correct this code to remove hair pixels??

5 vues (au cours des 30 derniers jours)
Pamela
Pamela le 8 Sep 2012
Commenté : hamed abdulaziz le 29 Sep 2013
Hi!! Can any on help to remove pixels hair from a dermoscopic image with DullRazor method. DullRazor performs the following steps: -It identifies the dark hair locations by a generalized grayscale morphological closing operation, -It verifies the shape of the hair pixels as thin and long structure, and replace the verified pixels by a bilinear interpolation, and -It smooths the replaced hair pixels with an adaptive median filter. I tried this but it's not correct:
image = im2double(imread('image1.bmp'));
figure, imshow(image);
grayscale = rgb2gray(image);
%get hairs using bottomhat filter
se = strel('disk',5);
hairs = imbothat(grayscale,se);
figure, imshow(hairs);

Réponses (1)

Image Analyst
Image Analyst le 8 Sep 2012
You need to find the hairs first. Binarize (threshold) and then use regionprops to identify long thin objects. Then use roifill() to replace those objects with the surrounding neighborhood background. I'm not sure what the median filter would gain you - I don't think it's necessary.
  15 commentaires
hamed abdulaziz
hamed abdulaziz le 26 Sep 2013
I attached sample image contains hair (hair.bmp)
hamed abdulaziz
hamed abdulaziz le 29 Sep 2013
Image Analyst,could you correct my code please,thank you in advance.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Images dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by