%图像平移
I = imread(‘g0.jpg’)
se=translate(strel(1),[80 50]);%
B=imdilate(I,se);%形态学膨胀
figure;
subplot(1,2,1),subimage(I);
title(‘orginal image’);
subplot(1,2,2),subimage(B);
title(‘translate image’);

图像平移 ——MATLAB实现

相关文章:

  • 2021-07-14
  • 2022-12-23
  • 2022-01-07
  • 2022-01-07
  • 2021-09-17
  • 2021-06-07
  • 2022-12-23
猜你喜欢
  • 2021-11-28
  • 2021-10-23
  • 2022-01-07
  • 2021-11-23
  • 2021-11-23
  • 2022-01-07
相关资源
相似解决方案