Fill background pixels with the value of the nearest foreground pixel
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Matt J
el 30 de Sept. de 2021
I have a grayscale image I and a logical mask of its foreground FG. I would like to do the operation roughly described as,
I(~FG)=I(nearest_pixel_in_FG)
In other words, similar to bwdist, I need to minimize the distance of each background pixel P to the foreground. However, I do not want the value of the minimum distance to be assigned to P. Instead, I want it assigned the value of the closest foreground pixel that it found. If multiple foreground pixels are equidistant from P, then the average value among them can be used.
Are there any existing tools that will do this operation efficiently?
0 comentarios
Respuesta aceptada
Sean de Wolski
el 30 de Sept. de 2021
Hi Matt,
The second output from bwdist is the index of the closest pixel. I think this is all you need to then index back.
[~,idx] = bwdist([0 0 1 1 0 0 0])
Not sure how this would handle ties though.
1 comentario
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!