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

5 visualizaciones (últimos 30 días)
Pamela
Pamela el 8 de Sept. de 2012
Comentada: hamed abdulaziz el 29 de Sept. de 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);

Respuestas (1)

Image Analyst
Image Analyst el 8 de Sept. de 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 comentarios
hamed abdulaziz
hamed abdulaziz el 26 de Sept. de 2013
I attached sample image contains hair (hair.bmp)
hamed abdulaziz
hamed abdulaziz el 29 de Sept. de 2013
Image Analyst,could you correct my code please,thank you in advance.

Iniciar sesión para comentar.

Categorías

Más información sobre Images en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by