资源简介

Retinopathy detection

资源截图

代码片段和文件信息

function varargout = RIA(varargin)
% RIA Application M-file for ria.fig
%    FIG = RIA launch ria GU
%    RIA(‘callback_name‘ ...) invoke the named callback.

% Last Modified by GUIDE v2.0 07-Jan-2009 19:21:31

if nargin == 0  % LAUNCH GUI

    fig = openfig(mfilename‘reuse‘);

    % Use system color scheme for figure:
    set(fig‘Color‘get(0‘defaultUicontrolBackgroundColor‘));

    % Generate a structure of handles to pass to callbacks and store it.
    handles = guihandles(fig);
    guidata(fig handles);

    if nargout > 0
        varargout{1} = fig;
    end

elseif ischar(varargin{1}) % INVOKE NAMED SUBFUNCTION OR CALLBACK

    try
        if (nargout)
            [varargout{1:nargout}] = feval(varargin{:}); % FEVAL switchyard
        else
            feval(varargin{:}); % FEVAL

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件      201692  2009-02-07 20:16  Automated Diabetic Retinopathy Detection\Arun.jpg
     文件      206691  2009-02-07 20:16  Automated Diabetic Retinopathy Detection\Gowriamma.jpg
     文件      177867  2009-02-07 20:16  Automated Diabetic Retinopathy Detection\Mahesh.jpg
     文件        8624  2009-04-08 01:20  Automated Diabetic Retinopathy Detection\RIA.fig
     文件        6851  2013-01-07 11:57  Automated Diabetic Retinopathy Detection\RIA.m

评论

共有 条评论