フィルターのクリア

how to use square filter with value 4 for erode function

2 ビュー (過去 30 日間)
GEETHA KULALA
GEETHA KULALA 2016 年 3 月 14 日
回答済み: Image Analyst 2016 年 3 月 14 日
f=imread('gee.jpg');
se=strel('train',4);
k=imerode(f,se);
imshow(k);

回答 (1 件)

Image Analyst
Image Analyst 2016 年 3 月 14 日
'train' is not one of the options. Not sure what you want, but maybe you want to consider the 4 closest neighbors
grayImage = imread('gee.jpg');
se = [0,1,0; 1,0,1; 0,1,0];
erodedImage = imerode(grayImage , se);
imshow(erodedImage);

カテゴリ

Help Center および File ExchangePoint Cloud Processing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by