File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
- classdef ImagemApp < handle
1
+ classdef ImagemAppData < handle
2
2
% ImageM application class, that manages open images.
3
3
%
4
- % output = ImagemApp (input)
4
+ % output = ImagemAppData (input)
5
5
%
6
6
% Example
7
- % ImagemApp
7
+ % ImagemAppData
8
8
%
9
9
% See also
10
10
%
41
41
42
42
%% Constructor
43
43
methods
44
- function obj = ImagemApp (varargin )
45
-
46
- end % constructor
44
+ function obj = ImagemAppData (varargin )
45
+ % Constructor for the ImagemAppData class.
46
+ end
47
47
48
48
end % construction function
49
49
Original file line number Diff line number Diff line change 31
31
% Created: 2011-03-10, using Matlab 7.9.0.529 (R2009b)
32
32
% Copyright 2011 INRA - Cepia Software Platform.
33
33
34
- import imagem .app .ImagemApp ;
34
+ import imagem .app .ImagemAppData ;
35
35
import imagem .gui .ImagemGUI ;
36
36
37
37
% check if image is present, or create one
60
60
end
61
61
62
62
% create the application, and a GUI
63
- app = ImagemApp ;
63
+ app = ImagemAppData ;
64
64
gui = ImagemGUI(app );
65
65
66
66
% use the GUI to create a new image display
You can’t perform that action at this time.
0 commit comments