WICHTIG: Der Betrieb von goMatlab.de wird privat finanziert fortgesetzt. - Mehr Infos...

Mein MATLAB Forum - goMatlab.de

Mein MATLAB Forum

 
Gast > Registrieren       Autologin?   

Partner:




Forum
      Option
[Erweitert]
  • Diese Seite per Mail weiterempfehlen
     


Gehe zu:  
Neues Thema eröffnen Neue Antwort erstellen

GUI soll 2 eingelesene Bilder addieren

 

trine1309
Forum-Newbie

Forum-Newbie


Beiträge: 2
Anmeldedatum: 18.12.08
Wohnort: ---
Version: ---
     Beitrag Verfasst am: 18.12.2008, 12:14     Titel: GUI soll 2 eingelesene Bilder addieren
  Antworten mit Zitat      
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.

für Matlab:
Code:

A=imread ('gf1.tif');
B=imread ('gf2.tif');
A=double(A);
B=double(B);
f=A+B;
imagesc(f);
colormap(gray(16))
improfile;
 

wie gesagt das funktioniert.

In GUI hab ich 3 Buttons und ein Axes feld erzeugt.

das einlesen der beiden Bilder klappt mittlerweile auch aber das überlagern/addieren eben nicht. Die vorhandenen Programme habe ich hochgeladen.

Ich hoffe es kann mir jemand helfen.

LG Tina

edit by steve: Bitte an die Code-Umgebung denken! Das ist der Button oben in der Mitte Wink
Private Nachricht senden Benutzer-Profile anzeigen


trine1309
Themenstarter

Forum-Newbie

Forum-Newbie


Beiträge: 2
Anmeldedatum: 18.12.08
Wohnort: ---
Version: ---
     Beitrag Verfasst am: 18.12.2008, 12:19     Titel:
  Antworten mit Zitat      
Code:

function varargout = 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',   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
    gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT


% --- 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;

% Update handles structure
guidata(hObject, handles);

% UIWAIT makes GegenfelderPI2 wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = 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)


[filename, pathname]=uigetfile('*.tif');
fullname=fullfile(pathname, filename);

A=imread(fullname);
handles.A=A;
guidata(hObject, handles);
set(handles.axes1,'HandleVisibility','ON');
axes(handles.axes1);
imagesc(A);
colormap(gray(16))


% --- 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)

[filename, pathname]=uigetfile('*.tif');
fullname=fullfile(pathname, filename);

B=imread(fullname);
handles.B=B;
guidata(hObject, handles);
set(handles.axes1,'HandleVisibility','ON');
axes(handles.axes1);
imagesc(B);
colormap(gray(16))



% --- 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');  


f=A+B;
imagesc(f);
colormap(gray(16))

set(handles.axes1,'HandleVisibility','ON');
axes(handles.axes1);
 


edit by steve: Code-Umgebung ergänzt!
Private Nachricht senden Benutzer-Profile anzeigen
 
Neues Thema eröffnen Neue Antwort erstellen



Einstellungen und Berechtigungen
Beiträge der letzten Zeit anzeigen:

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
.





 Impressum  | Nutzungsbedingungen  | Datenschutz | FAQ | goMatlab RSS Button RSS

Hosted by:


Copyright © 2007 - 2024 goMatlab.de | Dies ist keine offizielle Website der Firma The Mathworks

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.