• 大小: 77KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-02
  • 语言: Matlab
  • 标签: matlab  水果识别  

资源简介

可以用来进行水果识别,是完整的代码,只要有matlab就可以运行

资源截图

代码片段和文件信息

function tfeat = get_features(colorimg mask)
% 特征提取函数
 hsvimg = rgb2hsv(colorimg);
 h = hsvimg(::1);
 mask1 = mask(:);
 index = mask1>0;
[countsx] = imhist(h(index));                      %绘制直方图
Hue = find(counts == max(counts)); 

% ShapeValue = regionprops(mask ‘majoraxislength‘‘minoraxislength‘);
% Shape = ShapeValue.MajorAxisLength/ShapeValue.MinorAxisLength;
ShapeValue = regionprops(mask ‘eccentricity‘);
Shape = ShapeValue.Eccentricity;
tfeat = [Hue Shape ];
%tfeat = [feat1 feat2 f.Orientation f2.Eccentricity f1.Extent];

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-05-23 12:32  shuiguoshibie\
     文件         564  2012-11-29 20:47  shuiguoshibie\get_features.m
     文件         413  2012-11-29 21:45  shuiguoshibie\recognition.m
     文件         299  2012-11-30 00:04  shuiguoshibie\RGB2bw.m
     文件        4893  2012-10-25 09:03  shuiguoshibie\test.jpg
     文件        6833  2012-11-29 20:27  shuiguoshibie\the4th.fig
     文件       12389  2018-05-18 12:12  shuiguoshibie\the4th.m
     文件        6996  2012-10-25 08:59  shuiguoshibie\梨.jpg
     文件        5214  2012-10-24 18:20  shuiguoshibie\西红柿.jpg
     文件       41535  2012-10-24 18:27  shuiguoshibie\青椒.jpg
     文件       35508  2012-10-24 18:25  shuiguoshibie\香蕉.jpg

评论

共有 条评论