aboutsummaryrefslogtreecommitdiffstats
path: root/vorlesungen/slides/8/wavelets/gundh.tex
blob: 2d6c677509212e2fe01472b12a85d5e9684dc367 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
%
% template.tex -- slide template
%
% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
%
\bgroup
\definecolor{darkgreen}{rgb}{0,0.6,0}

\def\kurve#1#2{
        \draw[color=#2,line width=1.4pt]
                plot[domain=0:6.3,samples=400]
                        ({\x},{7*\x*exp(-(\x/#1)*(\x/#1))/#1});
}

\begin{frame}[t]
\setlength{\abovedisplayskip}{5pt}
\setlength{\belowdisplayskip}{5pt}
\frametitle{Wavelets}
\vspace{-20pt}
\begin{columns}[t,onlytextwidth]
\begin{column}{0.48\textwidth}
\begin{block}{Mutterwavelets + Dilatation}
Eine Menge von Dilatationsfaktoren
\[
A= \{a_1,a_2,\dots,a_N\}
\]
wählen\uncover<2->{, und mit Funktionen
\[
{\color{blue}g_i} = \tilde{D}_{1/a_i}{\color{red}g}
\]
die Standardbasisvektoren filtern}
\end{block}
\end{column}
\begin{column}{0.48\textwidth}
\uncover<5->{
\begin{block}{Vaterwavelets}
Tiefpass mit Funktion ${\color{darkgreen}h(\lambda)}$,
Standardbasisvektoren mit ${\color{darkgreen}h}$ filtern:
\[
D_{\color{darkgreen}h}e_k
\]
\end{block}}
\end{column}
\end{columns}
\begin{center}
\begin{tikzpicture}[>=latex,thick]
\begin{scope}

\draw[->] (-0.1,0) -- (6.6,0) coordinate[label={$\lambda$}];

\kurve{1}{red}
\uncover<4->{
\foreach \k in {0,...,4}{
        \pgfmathparse{0.30*exp(ln(2)*\k)}
        \xdef\l{\pgfmathresult}
        \kurve{\l}{blue}
}
}

\node[color=red] at ({0.7*1},3) [above] {$g(\lambda)$};
\uncover<4->{
\node[color=blue] at ({0.7*0.3*16},3) [above] {$g_i(\lambda)$};
}

\draw[->] (0,-0.1) -- (0,3.3);
\end{scope}

\begin{scope}[xshift=7cm]

\uncover<6->{
\draw[->] (-0.1,0) -- (6.6,0) coordinate[label={$\lambda$}];

\draw[color=darkgreen,line width=1.4pt]
        plot[domain=0:6.3,samples=100]
                ({\x},{3*exp(-(\x/0.5)*(\x/0.5)});

\draw[->] (0,-0.1) -- (0,3.3) coordinate[label={right:$\color{darkgreen}h(\lambda)$}];
}

\end{scope}

\end{tikzpicture}
\end{center}
\end{frame}
\egroup