Verfasst am: 11.06.2015, 10:34
Titel: Objekte auf GUI werden nicht dargestellt
Hallo zusammen. Ich habe ein Problem beim erstellen von GUIs mit und ohne guide. Mir werden meine Objekte, wie Buttons und Textfelder nicht angezeigt. Ich arbeite mit MatLab R2006a und weiß nicht weiter. Die Objekte stehen alle auf Visible. Selbst nach dem schnellen zusammenklicken einiger Buttons mit Guide sehe ich nichts.
Mit einer 2008er Version habe ich alles Problemlos hinbekommen.
Vielleicht weiß jemand, wo das Problem liegt. Vielen Dank schonmal.
Verfasst am: 11.06.2015, 11:45
Titel: Re: Objekte auf GUI werden nicht dargestellt
Hallo Belisama,
Wir wissen leider gar nichts über das eigentliche Problem. Die Information, dass Du nichts siehst reicht nicht um irgendeinen sinnvollen Vorschlag zu machen, wie man das ändern könnte. Was genau heißt "nichts"? Ist der Monitor schwarz? Ist die Figure außerhalb des Monitors? Ist die Figure kleiner als ein Pixel? Ist die Figure sichtbar, aber der Inhalt leer/schwarz/weiß? Sind die Elemte sichtbar, aber ohne Inhalt? Hast Du "normalized" Positiones angegeben und stellst die Elemente in Pixels dar? Wann siehst Du "nichts"? Bereits in GUIDE, oder erst, wenn Du die Figure wieder öffnest? Wie öffnest Du die Figure wieder?
Du siehst, dass noch weit mehr Details notwendig sind um Dein Problem zu beschreiben.
Entschuldigt, ich bin im Beschreiben nicht so gut. Aber ich versuche es nochmal.
Im Layout Editor sieht alles schick aus, hier kann ich die .fig auch öffnen, schließen, bearbeiten..., alles kein Problem.
Sobald ich aber mein Programm starte, egal ob aus dem LayoutEditor oder die .m aus dem Editor geschieht das, was man auf dem unteren Bild sieht. Ich dort wo etwas sein sollte Kringel gesetzt. An den Attributen der Buttons und auch des Static Texts habe ich außer den Namen nichts weiter angepasst.
Der Quellcode sieht so aus:
Code:
functionvarargout = DICOMLaden(varargin) % DICOMLADEN M-file for DICOMLaden.fig % DICOMLADEN, by itself, creates a new DICOMLADEN or raises the existing % singleton*.
%
% H = DICOMLADEN returns the handle to a new DICOMLADEN or the handle to % the existing singleton*.
%
% DICOMLADEN('CALLBACK',hObject,eventData,handles,...) calls the local % function named CALLBACK in DICOMLADEN.M with the given input arguments.
%
% DICOMLADEN('Property','Value',...) creates a new DICOMLADEN or raises the % existing singleton*. Starting from the left, property value pairs are % applied to the GUI before DICOMLaden_OpeningFunction gets called. An % unrecognized property name or invalid value makes property application % stop. All inputs are passed to DICOMLaden_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 DICOMLaden
% Last Modified by GUIDE v2.5 11-Jun-2015 10:11:14
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @DICOMLaden_OpeningFcn, ...
'gui_OutputFcn', @DICOMLaden_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
ifnargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
% --- Executes just before DICOMLaden is made visible. function DICOMLaden_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 DICOMLaden (see VARARGIN)
% Choose default command line output for DICOMLaden
handles.output = hObject;
% UIWAIT makes DICOMLaden wait for user response (see UIRESUME) % uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line. functionvarargout = DICOMLaden_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 laden. function laden_Callback(hObject, eventdata, handles) % hObject handle to laden (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) [file, path] = uigetfile('*.dcm', 'Select a data file');
data = strcat(path,file);
info = dicominfo(data);
Y = dicomread(info);
Y = imcomplement(Y);
imshow(Y,[],'parent',handles.axes1);
% --- Executes on button press in beenden. function beenden_Callback(hObject, eventdata, handles) % hObject handle to beenden (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) close(gcbf);
Gerade gab es noch die Idee, dass es ein Problem sein könnte, dass ich auf dem Rechner keine Admin-Rechte besitze. Die habe ich mittlerweile und es klappt trotzdem nicht.
Ich hoffe jetzt ist es für euch ersichtlicher, wie das Problem aussieht.
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.