Borrar filtros
Borrar filtros

Help me understand this.

2 visualizaciones (últimos 30 días)
Andrew Killian
Andrew Killian el 11 de Sept. de 2021
Respondida: Walter Roberson el 11 de Sept. de 2021
For every white pixel in original image:
– Make all neighbors white in result.
• What is a neighbor?
– Specified as an extra parameter.
% 4-connected neighbors
neighborhood = [0,1,0; 1,1,1; 0,1,0])
imdilate(person, neighborhood)
--- --- ---
For a binary image a 0 is a white pixel and a 1 is black correct?
So the nieghbordhood is like:
0 1 0
1 1 1
0 1 0
But if one is in the middle isn't this for black pixels?
The idea is that it is looking at every single pixel from left to right & top to bottom right?
How exactly is it determining which black pixels to make white?
  1 comentario
Walter Roberson
Walter Roberson el 11 de Sept. de 2021
For a binary image a 0 is a white pixel and a 1 is black correct?
No, 0 is black and 1 is white.

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 11 de Sept. de 2021
How exactly is it determining which black pixels to make white?
The binary dilation of A by B, denoted A B, is defined as the set operation:
where ˆB is the reflection of the structuring element B. In other words, it is the set of pixel locations z, where the reflected structuring element overlaps with foreground pixels in A when translated to z.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by