资源简介

此文件中包含的代码是对图像可以进行分类,将图像上的裂缝以及孔等可以分类出来

资源截图

代码片段和文件信息

function varargout = clas(varargin)
% CLAS MATLAB code for clas.fig
%      CLAS by itself creates a new CLAS or raises the existing
%      singleton*.
%
%      H = CLAS returns the handle to a new CLAS or the handle to
%      the existing singleton*.
%
%      CLAS(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in CLAS.M with the given input arguments.
%
%      CLAS(‘Property‘‘Value‘...) creates a new CLAS or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before clas_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to clas_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 clas

% Last Modified by GUIDE v2.5 27-Apr-2019 20:40:34

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @clas_OpeningFcn ...
                   ‘gui_OutputFcn‘  @clas_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 clas is made visible.
function clas_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 clas (see VARARGIN)

% Choose default command line output for clas
handles.output = hobject;
 im=axes(‘units‘‘normalized‘‘pos‘[0 0 1 1]);
 uistack(im‘down‘);                         
 B=imread(‘back6.jpg‘);
 image(B)
 colormap gray
 set(im‘handlevisibility‘‘off‘‘visible‘‘off‘);
% Update handles structure
guidata(hobject handles);

% UIWAIT makes clas wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = clas_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 pushbutton3.
function pushbutton3_Callback(hobject eventd

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      28137  2019-04-27 10:37  图像分类\back1.jpg

     文件      36553  2019-04-27 10:37  图像分类\back2.jpg

     文件     194989  2019-04-27 22:08  图像分类\back3.jpg

     文件      72254  2019-04-27 10:37  图像分类\back4.jpg

     文件     315572  2019-04-27 10:39  图像分类\back5.jpg

     文件     345708  2019-04-27 10:39  图像分类\back6.jpg

     文件      20879  2019-04-27 21:46  图像分类\clas.fig

     文件       5377  2019-04-28 17:27  图像分类\clas.m

     文件      27551  2019-04-28 17:01  图像分类\edge.jpg

     文件      35564  2019-04-27 12:28  图像分类\enhance.fig

     文件       4516  2019-04-27 20:32  图像分类\enhance.m

     文件      35442  2019-04-27 14:35  图像分类\fin.fig

     文件       4629  2019-04-28 17:01  图像分类\fin.m

     文件      49422  2019-04-27 10:24  图像分类\goal_picture.jpg

     文件    4804304  2019-04-27 11:35  图像分类\gray_pic.fig

     文件      47352  2019-04-27 12:21  图像分类\gray_pic.jpg

     文件      28672  2019-04-28 17:24  图像分类\help.doc

     文件      48261  2019-04-27 12:26  图像分类\hist_pic.jpg

     文件      35900  2019-04-27 16:02  图像分类\imfil.fig

     文件       5164  2019-04-27 20:35  图像分类\imfil.m

     文件      11690  2019-04-28 17:20  图像分类\main.fig

     文件       7399  2019-04-28 17:20  图像分类\main.m

     文件      35460  2019-04-27 11:53  图像分类\pic_change.fig

     文件       4765  2019-04-27 20:33  图像分类\pic_change.m

     文件       8034  2019-04-28 17:22  图像分类\version_information.fig

     文件       3036  2019-04-21 12:06  图像分类\version_information.m

     文件     505144  2019-04-27 10:23  图像分类\基于Matlab_GUI的数字图像处理仿真平台设计与开发_王文成.pdf

     目录          0  2019-04-28 18:08  图像分类

----------- ---------  ---------- -----  ----

              6721774                    28

............此处省略1个文件信息

评论

共有 条评论