Hallo Ihr Matlab Versteher,
ich muss für mein Praktikum in Matlab 2 Bilder addieren um dann deren überschneidungen sichtbar zu machen und dann über improfile "auszumessen". In matlab funktioniert das auch super allerdings soll ich das dann ins GUI der Bedienbarkeit halber übertragen und da geht mein programm nicht mehr.
functionvarargout = GegenfelderPI2(varargin) % GEGENFELDERPI2 M-file for GegenfelderPI2.fig % GEGENFELDERPI2, by itself, creates a new GEGENFELDERPI2 or raises the existing % singleton*.
%
% H = GEGENFELDERPI2 returns the handle to a new GEGENFELDERPI2 or the handle to % the existing singleton*.
%
% GEGENFELDERPI2('CALLBACK',hObject,eventData,handles,...) calls the local % function named CALLBACK in GEGENFELDERPI2.M with the given input arguments.
%
% GEGENFELDERPI2('Property','Value',...) creates a new GEGENFELDERPI2 or raises the % existing singleton*. Starting from the left, property value pairs are % applied to the GUI before GegenfelderPI2_OpeningFunction gets called. An % unrecognized property name or invalid value makes property application % stop. All inputs are passed to GegenfelderPI2_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
% Copyright 2002-2003 The MathWorks, Inc.
% Edit the above text to modify the response to help GegenfelderPI2
% Last Modified by GUIDE v2.5 18-Dec-2008 09:25:09
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @GegenfelderPI2_OpeningFcn, ...
'gui_OutputFcn', @GegenfelderPI2_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
ifnargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
% --- Executes just before GegenfelderPI2 is made visible. function GegenfelderPI2_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 GegenfelderPI2 (see VARARGIN)
% Choose default command line output for GegenfelderPI2
handles.output = hObject;
% UIWAIT makes GegenfelderPI2 wait for user response (see UIRESUME) % uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line. functionvarargout = GegenfelderPI2_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)
% --- Executes on button press in pushbutton2. function pushbutton2_Callback(hObject, eventdata, handles) % hObject handle to pushbutton2 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
% --- Executes on button press in pushbutton3. function pushbutton3_Callback(hObject, eventdata, handles) % hObject handle to pushbutton3 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
A = get(handles.pushbutton1,'double');
B = get(handles.pushbutton2,'double');
Du kannst Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen. Du kannst Dateien in diesem Forum posten Du kannst Dateien in diesem Forum herunterladen
MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.