Hallo, und glsich noch eine Frage
ich hätte gerne ein Hintergrungbild habe mir dafür folgenden code gebastelt
Code:
% --- Executes during object creation, after setting all properties. function axes3_CreateFcn(hObject, eventdata, handles) % hObject handle to axes3 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called
% Hint: place code in OpeningFcn to populate axes3 % This creates the 'background' axes
ha = axes('units','normalized', ...
'position',[0011]);
% Move the background axes to the bottom uistack(ha,'bottom');
% Load in a background image and display it using the correct colors % The image used below, is in the Image Processing Toolbox. If you do not have %access to this toolbox, you can use another image file instead.
I=imread('model.bmp');
hi = imagesc(I) colormapgray
% Turn the handlevisibility off so that we don't inadvertently plot into the axes again % Also, make the axes invisible set(ha,'handlevisibility','off', ...
'visible','off')
Doch wird mein Hintergrundbild jetzt auf dem ganzen bildschirm angezeigt.
egal wie groß ich meine axces_box ist. und wo ich sie auf meinem gui platziere.
Hoffentlich kann mir jemand sagen wie ich die Größe und Possiton verändere.
Doch wird mein Hintergrundbild jetzt auf dem ganzen bildschirm angezeigt.
was auch verständlich ist, da Du Normalized als Units benutzts und als Position [0 0 1 1]. Entweder versuchst Du es nun mit werten kleiner als 1 oder Du setzt die Units auf "pixel" und setzst die Position in Pixel ein.
MfG
Einstellungen und Berechtigungen
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.