-
大小: 18MB文件类型: .rar金币: 1下载: 0 次发布日期: 2023-08-02
- 语言: Matlab
- 标签: export_fig matlab 去白边
资源简介
matlab去白边函数,使用十分方便。该函数能够很好地去除图像的白边、保存不同格式的图像。相关安装及说明可以参考http://blog.csdn.net/connor_lele/article/details/20723519。
代码片段和文件信息
%COPYFIG Create a copy of a figure without changing the figure
%
% Examples:
% fh_new = copyfig(fh_old)
%
% This function will create a copy of a figure but not change the figure
% as copyobj sometimes does e.g. by changing legends.
%
% IN:
% fh_old - The handle of the figure to be copied. Default: gcf.
%
% OUT:
% fh_new - The handle of the created figure.
% Copyright (C) Oliver Woodford 2012
function fh = copyfig(fh)
% Set the default
if nargin == 0
fh = gcf;
end
% Is there a legend?
if isempty(findall(fh ‘Type‘ ‘axes‘ ‘Tag‘ ‘legend‘))
% Safe to copy using copyobj
fh = copyobj(fh 0);
else
% copyobj will change the figure so save and then load it instead
tmp_nam = [tempname ‘.fig‘];
hgsave(fh tmp_nam);
fh = hgload(tmp_nam);
delete(tmp_nam);
end
return
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 12929005 2014-03-02 16:57 gs910w32.exe
文件 43 2014-03-02 17:22 export_fig\.ignore\ghostsc
文件 16 2014-03-02 17:21 export_fig\.ignore\gs_font_path.txt
文件 58 2014-03-02 17:29 export_fig\.ignore\pdftops.txt
文件 846 2014-02-12 14:40 export_fig\copyfig.m
文件 5151 2014-02-12 14:40 export_fig\eps2pdf.m
文件 30376 2014-02-12 14:40 export_fig\export_fig.m
文件 5956 2014-02-12 14:40 export_fig\fix_lines.m
文件 4650 2014-02-12 14:40 export_fig\ghostsc
文件 3794 2014-02-12 14:40 export_fig\isolate_axes.m
文件 1315 2014-02-12 14:40 export_fig\license.txt
文件 1524 2014-02-12 14:40 export_fig\pdf2eps.m
文件 3068 2014-02-12 14:40 export_fig\pdftops.m
文件 6474 2014-02-12 14:40 export_fig\print2array.m
文件 8456 2014-02-12 14:40 export_fig\print2eps.m
文件 2462 2014-02-12 14:40 export_fig\user_string.m
文件 1845 2011-08-15 14:08 xpdfbin-win-3.03\ANNOUNCE
文件 778240 2011-08-15 14:08 xpdfbin-win-3.03\bin32\pdfdetach.exe
文件 782336 2011-08-15 14:08 xpdfbin-win-3.03\bin32\pdffonts.exe
文件 811008 2011-08-15 14:08 xpdfbin-win-3.03\bin32\pdfimages.exe
文件 790528 2011-08-15 14:08 xpdfbin-win-3.03\bin32\pdfinfo.exe
文件 1486848 2011-08-15 14:08 xpdfbin-win-3.03\bin32\pdftoppm.exe
文件 1482752 2011-08-15 14:08 xpdfbin-win-3.03\bin32\pdftops.exe
文件 860160 2011-08-15 14:08 xpdfbin-win-3.03\bin32\pdftotext.exe
文件 1213952 2011-08-15 14:08 xpdfbin-win-3.03\bin64\pdfdetach.exe
文件 1251840 2011-08-15 14:08 xpdfbin-win-3.03\bin64\pdffonts.exe
文件 1287168 2011-08-15 14:08 xpdfbin-win-3.03\bin64\pdfimages.exe
文件 1233920 2011-08-15 14:08 xpdfbin-win-3.03\bin64\pdfinfo.exe
文件 2247168 2011-08-15 14:08 xpdfbin-win-3.03\bin64\pdftoppm.exe
文件 2263040 2011-08-15 14:08 xpdfbin-win-3.03\bin64\pdftops.exe
............此处省略25个文件信息
相关资源
- 数学建模_医院投入产出效率_matlab包络
- hogcascade训练,内有人头训练样本和使
- 《MATLAB图像与视频处理实用案例详解
-
于群《MATLAB/Simuli
nk电力系统建模与 - MATLAB下的 Superpixel Segmentation using Lin
- Matlab实现感知哈希算法
- 基于MATLAB的电力谐波分析,在有频谱
- 基于Q=Dv的多种交通流模型Matlab绘图
- 疲劳驾驶检测matlab图像处理Code.zip
- matlab包络分析程序
- matlab-矩阵的奇异值分解算法
- 数字通信同步技术的MATLAB与FPGA实现—
- FCT(Fast Compress Tracking)目标跟踪程序
- matlab数值计算中文版pdf
- dsp开发matlab代码直接生成
- matlab深度学习工具箱254438
- Orbital Mechanics for Engineering Students Thi
- 鲁棒 matlab
- 电机原理与设计的MATLAB分析
- 反馈控制系统设计与分析-MATLAB语言
- matlab图像识别与坐标转换
-
MATLAB_Simuli
nk的系统仿真技术与应用 - 基于数字图像处理技术的指针式仪表
- Fisherface的原始论文和完整的源代码
- MATLAB仿真_张雪英编着.zip
- 基于matlab的人脸识别含源程序.pdf
- 《GNSS与惯性及多传感器组合导航系统
- 基于PCA的人脸识别MATLAB
- 现代永磁同步电机控制原理及MATLAB仿
- [MATLAB语言常用算法程序集].(龚纯)
评论
共有 条评论