资源简介

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\ghostscript.txt

     文件         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\ghostscript.m

     文件       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个文件信息

评论

共有 条评论