Define origin and length of the Strel function

2 ビュー (過去 30 日間)
Luccas S.
Luccas S. 2022 年 2 月 22 日
コメント済み: Luccas S. 2022 年 2 月 22 日
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?

採用された回答

DGM
DGM 2022 年 2 月 22 日
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 件のコメント
Luccas S.
Luccas S. 2022 年 2 月 22 日
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?

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by