f = imread('e:\picture\012.jpg');   %图像的大小 468*750
g = padarray(f,[468 0],'symmetric','post');   %垂直镜像
h = padarray(f,[0 750],'symmetric','post');   %水平镜像
imshow(g);
figure;

imshow(h);

-----------------------------------------------------------------------------------

效果如下:

图像镜像_matlab

图像镜像_matlab

相关文章:

  • 2022-01-01
  • 2021-05-21
  • 2021-11-27
  • 2022-12-23
  • 2022-01-01
  • 2021-12-04
  • 2021-11-27
  • 2021-11-26
猜你喜欢
  • 2021-07-15
  • 2022-12-23
  • 2021-05-17
  • 2022-01-06
  • 2022-12-23
  • 2021-11-26
  • 2021-11-03
相关资源
相似解决方案