Effacer les filtres
Effacer les filtres

Define origin and length of the Strel function

3 vues (au cours des 30 derniers jours)
Luccas S.
Luccas S. le 22 Fév 2022
Commenté : Luccas S. le 22 Fév 2022
I'm trying to create the following structuring element (SE):
The underline bar represents the origin of the SE.
For example, if I want an SE of and with length equal to 3, how could I do it through the strel function?

Réponse acceptée

DGM
DGM le 22 Fév 2022
No need for strel().
A = false(7);
A(4,4) = true
A = 7×7 logical array
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
st1 = [1 1 1 0 0 ];
B1 = imdilate(A,st1)
B1 = 7×7 logical array
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
st2 = [0 0 1 1 1];
B2 = imdilate(A,st2)
B2 = 7×7 logical array
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
  1 commentaire
Luccas S.
Luccas S. le 22 Fév 2022
Ok thanks!
If I have a signal formed by a column vector. So I should put st1 and st2 in vector form too, like: st1 = [1; 1; 1; 0; 0] To apply imdilate?

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by