• 大小: 71KB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2021-06-18
  • 语言: Matlab
  • 标签: matlab  

资源简介

通过简单的matlab程序对硬币的数量和表示的数额进行分类,属于简单图像识别的应用

资源截图

代码片段和文件信息

%---------------------------------------------%
%       %
%          工作室提供代做matlab仿真       %
%       %
%  详情请访问:http://cn.mikecrm.com/DeOOXFc  %
%       %
%---------------------------------------------%

%% COUNT OF COINS
% Ing. Diego Barrag醤 Guerrero
% www.matpic.com - www.eqbyte.com
%% Convert image to BW
coin1 = im2bw(imread(‘coins.png‘));
%% Fill image regions and holes
coin2 = imfill(coin1‘holes‘);
%% Label and count connected components
[L Ne]=bwlabel(double(coin2));
%% Measure properties of image regions
prop=regionprops(L‘Area‘‘Centroid‘);
%% Counter
total=0;
%% Show image
imshow(imread(‘coins.png‘));hold on
%% Money count based on area of coin
for n=1:size(prop1) %For 1 to Total number of coins
    cent=prop(n).Centroid;
    X=cent(1);Y=cent(2);
    if prop(n).Area>2000
        text(X-10Y‘5 C‘) 
        total=total+5;
    else
        total=total+10;
        text(X-10Y‘10 C‘) 
    end
end
hold on
title([‘Total of money: ‘num2str(total)‘ Cents‘])

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-07-08 15:58  通过简单的matlab程序对硬币的数量和表示的数额进行分类,属于简单图像识别的应用\
     目录           0  2019-07-08 15:58  通过简单的matlab程序对硬币的数量和表示的数额进行分类,属于简单图像识别的应用\COUNT_OF_COINS\
     文件       70313  2009-02-09 12:29  通过简单的matlab程序对硬币的数量和表示的数额进行分类,属于简单图像识别的应用\COUNT_OF_COINS\coins.png
     文件        1042  2019-07-08 16:00  通过简单的matlab程序对硬币的数量和表示的数额进行分类,属于简单图像识别的应用\COUNT_OF_COINS\count_of_coins.m
     文件          55  2019-07-03 17:00  【源码使用必读】.url

评论

共有 条评论