• 大小: 4KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-24
  • 语言: Matlab
  • 标签:

资源简介

用matlab做的果蔬图像识别程序,颜色特征提取

资源截图

代码片段和文件信息

function M=convmatrix(cepstrum)
p=size(cepstrum);
numcoeff=p(1);
numvec=p(2);
M=zeros(numcoeff1);
for i=1:numvec
    U=cepstrum(:i).^2;
    M=M+U;
end
for i=1:numcoeff
    M(i)=numvec/M(i);
end
end

    

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         311  2015-05-28 15:59  fruit and vegetable recognition\Texture.m
     文件         219  2015-05-22 21:43  fruit and vegetable recognition\convmatrix.m
     文件         866  2015-05-26 16:56  fruit and vegetable recognition\fruitvegetablerecognition.m
     文件        1346  2015-05-26 16:41  fruit and vegetable recognition\majorvectors.m
     文件        1187  2015-05-26 16:55  fruit and vegetable recognition\testing.m
     文件        1024  2015-06-01 15:09  fruit and vegetable recognition\training.m
     目录           0  2015-06-06 11:28  fruit and vegetable recognition\

评论

共有 条评论

相关资源