|
|
Laplace Pyramide auf Bild anwenden |
|
Philipp476 |
Gast
|
|
Beiträge: ---
|
|
|
|
Anmeldedatum: ---
|
|
|
|
Wohnort: ---
|
|
|
|
Version: ---
|
|
|
|
|
|
Verfasst am: 13.11.2014, 16:43
Titel: Laplace Pyramide auf Bild anwenden
|
|
|
|
|
Hallo, ich muss mittels einer Laplace Pyramide ein Bild einlesen bzw. bearbeiten und dann wieder ausgeben. Mit einem 1 dimensionalem Sinussignal habe ich das schon gemacht, nun soll ich es aber auf ein Bild anwenden und ich bekomme es nicht hin. Ich verzweifle daran bitte helft mir!
Hier der Code vom eindimensionalem Signal:
%Test
t=-pi:(pi/50):pi;
x=sin(t);
figure(1),subplot(4,2,1);
plot (x);
%Tp generieren
tpCoeff = [0.25 0.5 0.25];
sTP1 = filter(tpCoeff, 1, x);
subplot(4,2,2);
plot (sTP1);
%Downsampling
G0=downsample(sTP1 , 2);
subplot(4,2,3);
plot(G0);
%Upsampling
Gup=upsample(G0,2);
subplot(4,2,4);
plot(Gup);
%filtering of upsampled signal
GupTP=filter(tpCoeff, 2, Gup);
subplot(4,2,5);
plot(GupTP);
%drop last item of GupTP
lang=length(GupTP);
GupTP(lang)=[];
%subtraktion
L0= x - GupTP;
subplot(4,2,6);
plot(L0);
%calculate output
g=L0+GupTP;
subplot(4,2,7);
plot(g);
%calculate error
err=x-g;
subplot(4,2,;
plot(err);
|
|
|
|
|
Philipp476 |
Gast
|
|
Beiträge: ---
|
|
|
|
Anmeldedatum: ---
|
|
|
|
Wohnort: ---
|
|
|
|
Version: ---
|
|
|
|
|
|
Verfasst am: 13.11.2014, 17:36
Titel:
|
|
hat sich schon erledigt danke
|
|
|
|
|
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
|
|
Impressum
| Nutzungsbedingungen
| Datenschutz
| FAQ
| 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.
|
|