Skip to content

Commit f3f5514

Browse files
committed
avoid the use of import
1 parent d8b8d86 commit f3f5514

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

ImageM/ImageM.m

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
% ImageM(img);
2323
%
2424
% See also
25-
% Image
25+
% Image, imagem.app.ImagemAppData, imagem.gui.ImagemGUI
2626
%
2727

2828
% ------
@@ -31,9 +31,6 @@
3131
% Created: 2011-03-10, using Matlab 7.9.0.529 (R2009b)
3232
% Copyright 2011 INRA - Cepia Software Platform.
3333

34-
import imagem.app.ImagemAppData;
35-
import imagem.gui.ImagemGUI;
36-
3734
% check if image is present, or create one
3835
img = [];
3936
if ~isempty(varargin)
@@ -60,8 +57,8 @@
6057
end
6158

6259
% create the application, and a GUI
63-
app = ImagemAppData;
64-
gui = ImagemGUI(app);
60+
app = imagem.app.ImagemAppData;
61+
gui = imagem.gui.ImagemGUI(app);
6562

6663
% use the GUI to create a new image display
6764
viewer = createImageFrame(gui, img);

0 commit comments

Comments
 (0)