1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 19:36:26 +02:00
Files
uni/bv/uebung4.m
2016-11-15 11:56:12 +01:00

8 lines
222 B
Matlab

% 3.
img = logical([1 0 0 0 1 1 1 0 1 1]);
se = strel('line', 3, 0);
dilated_img = imdilate(img, se);
eroded_img = imerode(img, se);
figure (1), imshow(img);
figure (2), imshow(dilated_img);
figure (3), imshow(eroded_img);