フィルターのクリア

provide code for diamond filter with value 3 using dilation

2 ビュー (過去 30 日間)
GEETHA KULALA
GEETHA KULALA 2016 年 3 月 16 日
編集済み: Guillaume 2016 年 3 月 16 日
f=imread('gee.jpg');
se=strel(0 1 0, 0 1 0, 1 0 1);
b=imdilate(f,se);
imshow(b);

回答 (1 件)

Guillaume
Guillaume 2016 年 3 月 16 日
編集済み: Guillaume 2016 年 3 月 16 日
Not sure what your question is. If your question is about the usage of strel, why don't you read the documentation? If you want a 3x3 diamond:
se = strel('diamond', 1); %1 is (width - 1)/ 2, with width = 3

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by