Help me understand this.

1 visualizzazione (ultimi 30 giorni)
Andrew Killian
Andrew Killian il 11 Set 2021
Risposto: Walter Roberson il 11 Set 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 Commento
Walter Roberson
Walter Roberson il 11 Set 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.

Accedi per commentare.

Risposte (1)

Walter Roberson
Walter Roberson il 11 Set 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.

Community Treasure Hunt

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

Start Hunting!

Translated by