⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 appendimages.m

📁 matlab编写的路标识别系统
💻 M
字号:
% im = appendimages(image1, image2)%% Return a new image that appends the two images side-by-side.function im = appendimages(image1, image2)% Select the image with the fewest rows and fill in enough empty rows%   to make it the same height as the other image.rows1 = size(image1,1); %返回image1的行数rows2 = size(image2,1); %返回image2的行数 if (rows1 < rows2)     image1(rows2,1) = 0;else     image2(rows1,1) = 0;end% Now append both images side-by-side.im = [image1 image2]; %将image1与image2连接起来生成一个大矩阵

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -