资源简介

本资源是matlab的m文件,实现了多幅图像4或9在同一幅图像中的合并显示,便于图像处理中对不同参数实现的结果进行比较。会对大家有帮助。

资源截图

代码片段和文件信息

clear all;
close all;
clc;
% Define the area to be recorded
rect = get(gcf‘Position‘);
%rect(1:2) = [0 0];

  A1=imread(‘shipAB_C1.jpg‘);
  subplot(‘Position‘[0 0.5 0.5 0.5])imshow(A1);
  %axis([0 0.5 0 0.5]) 
  B1=imread(‘shipAB_C2.jpg‘);
  subplot(‘Position‘[0.5 0.5 0.5 0.5])imshow(B1);
  %axis([0 0.5 0.5 1]);
  C1=imread(‘shipAB_C3.jpg‘);
  subplot(‘Position‘[0 0 0.5 0.5])imshow(C1);
  D1=imread(‘shipAB_C4.jpg‘);
  subplot(‘Position‘[0.5 0 0.5 0.5])imshow(D1);
 figure(rect);
close all;

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        520  2009-10-26 09:27  M4pics1.m

     文件        919  2009-10-26 09:49  M9pics1.m

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

                 1439                    2


评论

共有 条评论