• 大小: 1004KB
    文件类型: .rar
    金币: 2
    下载: 0 次
    发布日期: 2024-02-03
  • 语言: Matlab
  • 标签: GUI  MATLAB  

资源简介

在织物单位长度中排列的经纬纱根数,称为织物的经纬纱密度。 织物密度的计算单位以公制计,是指10cm内经纬纱排列的根数。密度的 大小,直接影响织物的外观,手感,厚度,强力,抗折性,透气性,耐磨性和 保暖性能等物理机械指标,同时他也关系到产品的成本和生产效率的大小。经 纬密度的测定方法可以采用直接测数法。 直接测数法是凭借照布镜或织物密度分析镜来完成。织物密度分析镜的 刻度尺长度为5cm,在分析镜头下面,一块长条形玻璃片上刻有一条红线,在 分析织物密度时,移动镜头,将玻璃片上红线和刻度尺上红线同时对准某两根 纱线之间,以此为起点,边移动镜头边数纱线根数,直到5cm刻度线为此。 输出之纱线根数乘以2,即为10cm织物的密度值。 在点数纱线根数时,要以两根纱线之间的中央为起点,若数到终点时, 超过0.5根,而不足一根时,应按0.75根算;若不足0.5根时,则按0.25根 算。织物密度一般应测得3-4个数据,然后取其算术平均值为测定结果。 这种计数的方式可以使用图像处理技术自动来完成,设计一应用程序完 成织物密度检测。 要求完成功能: 1、能够读取和存储图像,对图像进行去噪和对比度增强; 2、对任意指定的距离范围内的织物进行自动经纬纱根数计数; 3、设计软件界面。

资源截图

代码片段和文件信息

function chgicon(hfilename)
%CHGICON changes the figure icon.
%   CHGICON(HFILENAME) changes the icon of a figure to an image specified by
%   the string FILENAME where H is a handle to the figure. If the file is not
%   in the current directory or in a directory in the MATLAB pathspecify the
%   full pathname of the location on your system. If FILENAME is not a valid 
%   image file name the function just removes the previous icon of the figure.
%
%  Example:
%         h = figure;         
%         chgicon(h‘newIcon.png‘); % replace ‘newIcon.png‘ with your image

%
% IMPORTANT NOTES:
%      REPLACING THE MATLAB GUI ICON VIOLATES THE LICENSE AGREEMENT
% OF MATLAB. DO NOT USE THIS FUNCTION COMMERCIALLY.
%
%   Han Qun Sept. 2005
%   Copyright 2005-2006 Han Qun
%   College of Precision Instrument and Opto-Electronics Engineering
%   Tianjin University 300072 P.R.China.
%   Email: junziyang@126.com
%   $Revision: 1.0 $  $Date: 2005/12/2 $

if nargin<2
    error(‘MATLAB:chgicon‘‘%s‘‘Too few input arguments!‘);
end
if nargin >2
    error(‘MATLAB:chgicon‘‘%s‘‘Too many input arguments!‘);
end
newIcon = javax.swing.ImageIcon(filename);
javaframe = get(h‘Javaframe‘);
javaframe.setFigureIcon(newIcon);

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

     文件       1259  2006-09-12 13:24  织物密度测量\chgicon.m

     文件       7834  2014-12-25 15:08  织物密度测量\design.fig

     文件      12943  2014-12-27 10:23  织物密度测量\design.m

     文件      13344  2014-12-27 10:24  织物密度测量\design2.m

     文件      54512  2014-12-24 10:36  织物密度测量\HIT.ico

     文件       9493  2014-12-24 10:35  织物密度测量\HIT.jpg

     文件     265030  2012-11-08 15:18  织物密度测量\pic_001.jpg

     文件     756562  2012-11-08 15:18  织物密度测量\pic_002.jpg

     文件        561  2014-12-27 10:15  织物密度测量\readme.txt

     文件          0  2014-12-27 10:23  织物密度测量\tem.m

     目录          0  2014-12-27 10:16  织物密度测量

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

              1121538                    11


评论

共有 条评论