久久精品国产一区二区无码,а天堂中文最新一区二区三区 ,久久久无码精品亚洲日韩蜜桃,一群黑人大战亚裔女在线播放

您好,歡迎訪問深圳市深恒安科技有限公司官網(wǎng)!
VOC檢測(cè)儀-甲醛檢測(cè)儀-氣體報(bào)警器-氣體檢測(cè)儀廠家-深恒安科技有限公司
聯(lián)系我們
VOC檢測(cè)儀-甲醛檢測(cè)儀-氣體報(bào)警器-氣體檢測(cè)儀廠家-深恒安科技有限公司
郵箱:Gaspanda@163.com
電話:18028784534
地址:深圳市寶安區(qū)新安街道文雅社區(qū)寶民一路203號(hào)
當(dāng)前位置: 主頁 > 檢測(cè)儀知識(shí)百科

檢測(cè)儀知識(shí)百科

水果檢測(cè)儀 【水果識(shí)別】基于matlab GUI蘋果質(zhì)量檢測(cè)及分級(jí)系統(tǒng)【含Matlab源碼
發(fā)布時(shí)間:2021-05-26 16:01瀏覽次數(shù):

一、簡(jiǎn)介

現(xiàn)在商業(yè)行為中,在水果出廠前都需要進(jìn)行質(zhì)量檢測(cè),需要將不同等級(jí)的水果進(jìn)行分級(jí)包裝,以保證商業(yè)利益最大化??墒莻鹘y(tǒng)方法都是依靠人工進(jìn)行檢測(cè),效率低下,主觀成分大,并不能很好客觀地評(píng)價(jià)出貨質(zhì)量,導(dǎo)致工廠損失利益水果檢測(cè)儀水果檢測(cè)儀,增加客戶投訴,從而造成品牌效率損失乙炔檢測(cè)儀,造成隱形的損失。

該課題為基于MATLAB的水果分級(jí)系統(tǒng)。適用圓形水果,如蘋果酒精檢測(cè)儀,橘子水果檢測(cè)儀,柚子,柿子等,統(tǒng)計(jì)水果圖片的面積,圓形度和色澤等多參數(shù)進(jìn)行評(píng)價(jià)。該設(shè)計(jì)帶一個(gè)GUI界面,通過設(shè)置直徑和色澤,測(cè)試水果的這些參數(shù),從而得出該水果所屬等級(jí)。

二、源代碼

function varargout = appletest(varargin)
% APPLETEST MATLAB code for appletest.fig
%      APPLETEST, by itself, creates a new APPLETEST or raises the existing
%      singleton*.
%
%      H = APPLETEST returns the handle to a new APPLETEST or the handle to
%      the existing singleton*.
%
%      APPLETEST('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in APPLETEST.M with the given input arguments.
%
%      APPLETEST('Property','Value',...) creates a new APPLETEST or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before appletest_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to appletest_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
%      instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES
% Edit the above text to modify the response to help appletest
% Last Modified by GUIDE v2.5 19-Oct-2019 20:28:04
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
    'gui_Singleton',  gui_Singleton, ...
    'gui_OpeningFcn', @appletest_OpeningFcn, ...
    'gui_OutputFcn',  @appletest_OutputFcn, ...
    'gui_LayoutFcn',  [] , ...
    'gui_Callback',   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
    gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before appletest is made visible.
function appletest_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to appletest (see VARARGIN)
% Choose default command line output for appletest
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
% UIWAIT makes appletest wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = appletest_OutputFcn(hObject, eventdata, handles)
% varargout  cell array for returning output args (see VARARGOUT);
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% Get default command line output from handles structure
varargout{1} = handles.output;
% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
[filename,pathname]=uigetfile({'*.*';'*.bmp';'*.jpg';'*.tif';'*.jpg'},'選擇圖像');
image=[pathname,filename];%合成路徑+文件名
im=imread(image);%讀取圖像
im=im2double(im);
axes(handles.axes1);
imshow(im);%在坐標(biāo)axes1顯示原圖像
title('原始圖像');
handles.X1=im;
guidata(hObject,handles);
% --- Executes on selection change in popupmenu1.
function popupmenu1_Callback(hObject, eventdata, handles)
% hObject    handle to popupmenu1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% Hints: contents = cellstr(get(hObject,'String')) returns popupmenu1 contents as cell array
%        contents{get(hObject,'Value')} returns selected item from popupmenu1
Val=get(hObject,'Value')
strl=get(hObject,'string')
switch strl{Val};
    
    case '   面積'
        
        
        x1=handles.X1;
        
        w=rgb2gray(x1);
        
        L=medfilt2(w);
        
        level=graythresh(L);
        
        bw=im2bw(L,level);
        
        bw=imfill(~bw,'holes');
        
        axes(handles.axes2);
        
        imshow(bw);
        
        title('面積圖像');
        
        strNC=[num2str(bwarea(bw))];
        
        set(handles.text9,'string',strNC);
        strNC1=('一級(jí)果');
        strNC2=('二級(jí)果');
        strNC3=('三級(jí)果');
        if bwarea(bw)>30000
            set(handles.text14,'string',strNC1);
        else if bwarea(bw)>1000&&bwarea(bw)<30000
                set(handles.text14,'string',strNC2);
            else
                set(handles.text14 ,'string',strNC3);
            end
        end
        
        %     strNC1=('無');
        
        %     set(handles.text14,'string',strNC1);
    case'   顏色'
        
        
        x1=handles.X1;
        
        hv=rgb2hsv(x1);
        
        H=hv(:,:,1);
        
        S=hv(:,:,2);
        
        V=hv(:,:,3);
        
        axes(handles.axes3);
        
        imshow(H)
        
        title('H分量圖像');
        
        level=graythresh(x1);
        
        apple=im2bw(x1,level);
        
        count=length(x1);
        
        for i=1:count
            
            red_ratio=length(find((H>0 & H<1/12) | H>11/12))/length(find(apple==1));
            
        end
        r=red_ratio;
        strNC=[num2str(red_ratio*100),'%'];
        
        set(handles.text10,'string',strNC);
        
        strNC1=('一級(jí)果');
        strNC2=('二級(jí)果');
        strNC3=('三級(jí)果');
        if r>1
            set(handles.text15,'string',strNC1);
        else if r>0.8&&r<1
                set(handles.text15,'string',strNC2);
            else
                set(handles.text15 ,'string',strNC3);
            end
        end
    case'   圓形度'
        
        
        x1=handles.X1;
        
        I2=rgb2gray(x1);
        
        J=im2bw(I2,0.75);
        
        I=~J;
        
        %====形態(tài)特征值計(jì)算===%
        l=bwlabel(I,8);
        
        [l,num]=bwlabel(I,8);
        
        STATS=regionprops(l,'Area');
        
        A=STATS.Area;
        
        STATS=regionprops(l,'Perimeter');
        
        L=STATS.Perimeter
        
        C=(4.*pi.*A)./(L.*L); % 計(jì)算圓度
        
        % L為周長,A為面積,C為圓形度
        
        strNC=[num2str(C)];
        
        set(handles.text12,'string',strNC);
        
        strNC1=('一級(jí)果');
        strNC2=('二級(jí)果');
        strNC3=('三級(jí)果');
        if C>0.65
            set(handles.text17,'string',strNC1);
        else if C>0.55&&C<0.65
                set(handles.text17,'string',strNC2);
            else
                set(handles.text17,'string',strNC3);
            end
        end
    case'   表面缺陷'
        
        
        x1=handles.X1;
        
        w=rgb2gray(x1);
        
        L=medfilt2(w);
        
        level=graythresh(L);
        
        bw=im2bw(L,level);
        
        
        X=imclearborder(bw,4); %去除圖像與邊界相連通,但更高亮的區(qū)域
        
        axes(handles.axes4);
        
        imshow(X)
        
        title('缺陷圖像');
        
        Q=(bwarea(X)/bwarea(~bw)*100)
        q=num2str(bwarea(X)/bwarea(~bw)*100)
        strNC=[q,'%'];
        
        set(handles.text11,'string',strNC);
        
        strNC1=('一級(jí)果');
        strNC2=('二級(jí)果');
        strNC3=('三級(jí)果');
        if Q<0.1
            set(handles.text16,'string',strNC1);
        else if Q>0.1&&Q<0.2
                set(handles.text16,'string',strNC2);
            else
                set(handles.text16,'string',strNC3);
            end
        end
end
guidata(hObject, handles);
% --- Executes during object creation, after setting all properties.
function popupmenu1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to popupmenu1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called
% Hint: popupmenu controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end

檢測(cè)汽油儀_紙張水分儀檢測(cè)方法_水果檢測(cè)儀

三、運(yùn)行結(jié)果

四、備注

版本:2014a

騰元達(dá)編輯,轉(zhuǎn)載請(qǐng)注明出處

標(biāo)簽: 水果檢測(cè)儀
請(qǐng)往下拉!
av天堂中av世界中文在线播放| 精品久久久无码中字| 中文字幕免费不卡二区| 少妇人妻大乳在线视频| 巨胸喷奶水www视频网站| 国产成人精品一区二区三区| 久久精品人妻中文系列| 吸咬奶头狂揉60分钟视频| 少妇无码一区二区二三区| 亚洲乱码国产一区三区| 无码国产色欲xxxxx视频| 色婷婷久久久swag精品| 少妇人妻精品一区二区三区| 无码熟妇人妻av| 在线观看片免费人成视频播放 | 妺妺窝人体色www看人体| 国产午夜无码视频在线观看| 比比资源先锋影音网| 男人的天堂av社区在线| 人与嘼交av免费| 岛国av无码免费无禁网站| 亚洲国产精品久久久久婷婷老年| 无码人妻久久一区二区三区蜜桃| 中国丰满熟妇xxxx性| 亚洲精品无码不卡在线播放he| 亚洲日韩乱码中文字幕 | 好爽又高潮了毛片免费下载| 亚洲一区二区三区av无码| 一本久久精品一区二区| 无码人妻精品一二三区免费| 国产成人a∨麻豆精品| 后入内射无码人妻一区| 亚洲欧美成人一区二区三区| 亚洲色无码播放| 欧美精品v国产精品v日韩精品 | 精品久久人人做人人爽综合 | 农村诱奷小箩莉h文合集| 亚洲日韩欧洲乱码av夜夜摸| 精品国产午夜福利在线观看| 奶头好大揉着好爽视频| 精品无码av无码专区|