Help me understand this.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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
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.
Respuestas (1)
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.
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!