フーリエ解析#

フーリエ解析(Fourier analysis):信号を異なる周波数の正弦波(sin)の重ね合わせとして表現すること

例えば画像を周波数の表現にして、周波数をフーリエ解析で分解したりする。

フーリエ級数#

\(T\)の区間\([-T/2, T/2]\)における連続関数\(f(t)\)はフーリエ級数に展開できる

\[ f(t)=\frac{a_0}{2}+\sum_{k=1}^{\infty}\left(a_k \cos k \omega_o t+b_k \sin k \omega_o t\right), \quad-\frac{T}{2} \leq t \leq \frac{T}{2} \]

フーリエ係数は

\[ a_k=\frac{2}{T} \int_{-T / 2}^{T / 2} f(t) \cos k \omega_o t \mathrm{~d} t, \quad b_k=\frac{2}{T} \int_{-T / 2}^{T / 2} f(t) \sin k \omega_o t \mathrm{~d} t \]

である。 ここで

\[ \omega_o=\frac{2 \pi}{T} \]

である。これを 基本周波数 といい、フーリエ級数は関数\(f(t)\)\(\omega_o\)の整数倍の周波数の正弦波の重ね合わせとして表現する。

\(a_0/2\)直流成分 と呼び、\(\omega_o\)\(k\)倍の周波数の振動を第\(k\) 高調波 と呼ぶ。以下では\(t\)を「時刻」とみなし、\(f(t)\)を「信号」と呼ぶ。

複素数の指数関数#

複素数#

複素数とは \(z=x+i y\) のように 実(数)部 \(x\)虚(数)部 \(y\)\(i\) 倍を足したもの

\(i\)虚数単位 と呼ばれ、 \(i^2=-1\) となる数と約束したもの。

\(x\)軸を実部 \(x=\operatorname{Re} z\)\(y\)軸を 虚部 \(y=\operatorname{Im} z\)にとった平面を 複素平面 と呼ぶ

Hide code cell source
import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(4, 3))

ax.arrow(-0.5, 0, 1.7, 0, head_width=0.05, head_length=0.1, fc='black', ec='black', length_includes_head=True)
ax.arrow(0, -0.5, 0, 1.5, head_width=0.05, head_length=0.1, fc='black', ec='black', length_includes_head=True)

ax.text(1.3, 0, "Re", fontsize=14, color='black')
ax.text(0, 1.1, "Im", fontsize=14, color='black')

ax.set_aspect('equal', adjustable='datalim')

ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
ax.spines['left'].set_visible(False)
ax.spines['bottom'].set_visible(False)
ax.set(xticks=[], yticks=[])

c = 1 + 0.5j # 複素数
complex_points = [c, c.conjugate()] # conjugate: 共役複素数
colors = ['red', 'blue']

for i, (point, color) in enumerate(zip(complex_points, colors)):
    x, y = point.real, point.imag
    ax.plot([0, x], [0, y], color=color, linestyle='--', linewidth=0.8)
    ax.scatter([x], [y], color=color)
    z = r"$z$" if i == 0 else r"$\bar{z}$"
    ax.text(x + 0.05, y + 0.05, f'{z} = ${point}$', fontsize=10, color=color)


plt.show()
../../_images/b3a16198032d6f46d122d3d3e72bcc4ca56e1d58b150486ac82ef30dca46088c.png

共役複素数#

複素数 \(z=x+i y\) に対して, \(\bar{z}=x-i y\) をその 共役(きょうやく)複素数 といい、 \(z, \bar{z}\)互いに複素共役である という。 これらは複素平面上で \(x\) 軸に関して対称な位置にある。 この定義から

\[ x=\frac{z+\bar{z}}{2}, \quad y=\frac{z-\bar{z}}{2 i} \]

となる。また重要な関係として

\[ z \bar{z}=(x+i y)(x-i y)=x^2+y^2=|z|^2 \]

が成り立つ。

オイラーの式#

指数部が虚数の指数関数 \(e^{i \theta}\) を次の複素数と定義する。

\[ e^{i \theta}=\cos \theta+i \sin \theta \]

これは オイラーの式 と呼ばれる式で、複素平面の単位円上の実軸から角度\(\theta\)の点を表す。

定理
\[ e^{i \theta} e^{i \phi}=e^{i(\theta+\phi)} \]

が成り立つ。

証明

定義より次のように変形できる

\[\begin{split} \begin{aligned} e^{i \theta} e^{i \phi} & =(\cos \theta+i \sin \theta)(\cos \phi+i \sin \phi) \\ & =(\cos \theta \cos \phi-\sin \theta \sin \phi)+i(\cos \theta \sin \phi+\sin \theta \cos \phi)\\ e^{i(\theta+\phi)} &=\cos (\theta+\phi)+i \sin (\theta+\phi)\\ \end{aligned} \end{split}\]

両者が等しいことは、三角関数の加法定理

\[\begin{split} \begin{aligned} \cos (\theta+\phi) &=\cos \theta \cos \phi-\sin \theta \sin \phi\\ \sin (\theta+\phi) &=\cos \theta \sin \phi+\sin \theta \cos \phi \end{aligned} \end{split}\]

よりわかる

定理
\[ \cos \theta=\frac{e^{i \theta}+e^{-i \theta}}{2} , \quad \sin \theta=\frac{e^{i \theta}-e^{-i \theta}}{2 i} \]

が成り立つ。

証明

オイラーの式 およびその式の \(\theta\)\(-\theta\) に置き換えた式

\[ e^{i \theta}=\cos \theta+i \sin \theta , \quad e^{-i \theta}=\cos \theta-i \sin \theta \]

を使うと、

\[ e^{i \theta} + e^{-i \theta} = \cos \theta + i \sin \theta + \cos \theta-i \sin \theta = 2 \cos \theta \]

より

\[ \cos \theta=\frac{e^{i \theta}+e^{-i \theta}}{2} \]

が得られる。また

\[ e^{i \theta} - e^{-i \theta} = \cos \theta + i \sin \theta - \cos \theta + i \sin \theta = 2i \sin \theta \]

より

\[ \sin \theta=\frac{e^{i \theta}-e^{-i \theta}}{2 i} \]

が得られる。

フーリエ級数の複素表示#

\[ \cos \theta=\frac{e^{i \theta}+e^{-i \theta}}{2}, \quad \sin \theta=\frac{e^{i \theta}-e^{-i \theta}}{2 i} \]

を使うと、フーリエ級数は以下のように表すことができる。

\[\begin{split} \begin{aligned} f(t) & =\frac{a_0}{2}+\sum_{k=1}^{\infty}\left(a_k \frac{e^{i k \omega_o t}+e^{-i k \omega_o t}}{2}+b_k \frac{e^{i k \omega_o t}-e^{-i k \omega_o t}}{2 i}\right) \\ & =\frac{a_0}{2}+\frac{1}{2} \sum_{k=1}^{\infty}\left(\left(a_k-i b_k\right) e^{i k \omega_o t}+\left(a_k+i b_k\right) e^{-i k \omega_o t}\right)\\ & =\sum_{k=-\infty}^{\infty} C_k e^{i k \omega_o t} \end{aligned} \end{split}\]

ただし

\[\begin{split} C_k=\left\{\begin{array}{cc} \left(a_k-i b_k\right) / 2 & k>0 \\ a_0 / 2 & k=0 \\ \left(a_{-k}+i b_{-k}\right) / 2 & k<0 \end{array}\right. \end{split}\]

である

また、\(C_k\)の各式は次のように変形できる

\[\begin{split} \begin{aligned} \frac{a_k-i b_k}{2} & =\frac{2}{T} \int_{-T / 2}^{T / 2} f(t) \frac{\cos k \omega_o t-i \sin k \omega_o t}{2} \mathrm{~d} t=\frac{1}{T} \int_{-T / 2}^{T / 2} f(t) e^{-i k \omega_o t} \mathrm{~d} t \\ \frac{a_0}{2} & =\frac{1}{T} \int_{-T / 2}^{T / 2} f(t) \mathrm{d} t \\ \frac{a_{-k}+i b_{-k}}{2} & =\frac{2}{T} \int_{-T / 2}^{T / 2} f(t) \frac{\cos \left(-k \omega_o t\right)+i \sin \left(-k \omega_o t\right)}{2} \mathrm{~d} t \\ & =\frac{1}{T} \int_{-T / 2}^{T / 2} f(t)\left(\cos k \omega_o t-i \sin k \omega_o t\right) \mathrm{d} t=\frac{1}{T} \int_{-T / 2}^{T / 2} f(t) e^{-i k \omega_o t} \mathrm{~d} t \end{aligned} \end{split}\]
\[ f(t)=\sum_{k=-\infty}^{\infty} C_k e^{i k \omega_o t}, \quad C_k=\frac{1}{T} \int_{-T / 2}^{T / 2} f(t) e^{-i k \omega_o t} \mathrm{~d} t \]

この\(C_k\)(複素)フーリエ係数 と呼ぶ。

Hide code cell source
import numpy as np
import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(4, 3))

# 軸を描画
ax.arrow(-1.2, 0, 2.4, 0, head_width=0.05, head_length=0.1, fc='black', ec='black', length_includes_head=True)
ax.arrow(0, -1.2, 0, 2.4, head_width=0.05, head_length=0.1, fc='black', ec='black', length_includes_head=True)

ax.text(1.3, 0, "Re", fontsize=14, color='black')
ax.text(0, 1.3, "Im", fontsize=14, color='black')

ax.set_aspect('equal', adjustable='datalim')
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
ax.spines['left'].set_visible(False)
ax.spines['bottom'].set_visible(False)
ax.set(xticks=[], yticks=[])


# 単位円
theta = np.linspace(0, 2*np.pi, 100)
x = np.cos(theta)
y = np.sin(theta)
plt.plot(x, y, 'k-', linewidth=1)  # 黒い実線で単位円を描画

# curve
t = 0.3*np.pi
theta = np.linspace(0, t, 100)
x = np.cos(theta) * 0.2
y = np.sin(theta) * 0.2
ax.plot(x, y, 'k--', linewidth=1)  # 黒い実線で単位円を描画

# text
m = len(x) // 2
ax.text(x[m], y[m], r"$\theta$")

# line
x = np.cos(t)
y = np.sin(t)
ax.plot([0, x], [0, y], color="blue", linestyle='-.', linewidth=0.8)
ax.scatter([x], [y], color="blue")

plt.show()
../../_images/41fb02a967ff4fbe066d7b3e77ea2bed1c1ea0cd93de5375b24a1cc80da04b80.png

フーリエ変換#

フーリエ級数

\[ f(t)=\sum_{k=-\infty}^{\infty} C_k e^{i k \omega_o t}, \quad C_k=\frac{1}{T} \int_{-T / 2}^{T / 2} f(t) e^{-i k \omega_o t} \mathrm{~d} t \]

において

\[ \omega_k=k \omega_o, \quad k=0, \pm 1, \pm 2, \ldots \]

とおき、

\[ \Delta \omega=\omega_{k+1}-\omega_k=\omega_o=\frac{2 \pi}{T}, \quad C_k=\frac{F\left(\omega_k\right)}{T} \]

と書くと、

\[ f(t)=\frac{1}{2 \pi} \sum_{k=-\infty}^{\infty} F\left(\omega_k\right) e^{i \omega_k t} \Delta \omega, \quad F\left(\omega_k\right)=\int_{-T / 2}^{T / 2} f(t) e^{-i \omega_k t} \mathrm{~d} t \]

となる。周期\(T\to\infty\)とすると、\(\Delta \omega \to 0\)となり、積分として表すことができる。

\[ F(\omega)=\int_{-\infty}^{\infty} f(t) e^{-i \omega t} \mathrm{~d} t \]

を信号\(f(t)\)フーリエ変換 と呼び、

\[ f(t)=\frac{1}{2 \pi} \int_{-\infty}^{\infty} F(\omega) e^{i \omega t} \mathrm{~d} \omega \]

逆フーリエ変換 と呼ぶ。

Note

  • 信号\(f(t)\)(逆フーリエ変換)は周波数\(\omega\)の正弦波\(e^{i \omega t}\)を負の数を含めたすべての実数\(\omega\)に対して重ね合わせている

  • フーリエ変換 \(F(\omega)\) は信号\(f(t)\)\(e^{i \omega t}\)の共役複素数\(e^{-i \omega t}\)を掛けて、すべての時刻\(t\)で積分した形になっている

フーリエ変換

\[ F(\omega)=\int_{-\infty}^{\infty} f(t) e^{-i \omega t} \mathrm{~d} t \]

逆フーリエ変換

\[ f(t)=\frac{1}{2 \pi} \int_{-\infty}^{\infty} F(\omega) e^{i \omega t} \mathrm{~d} \omega \]

逆フーリエ変換は信号\(f(t)\)をあらゆる周波数(すべての実数の\(\omega\))の振動の重ね合わせで表す。

\(F(\omega)\)は周波数\(\omega\)の成分\(e^{i \omega t}\)の大きさを表し、\(f(t)\)スペクトル (フランス語: spectre、英語: spectrum)と呼ばれる。(光をプリズムに通して各色のスペクトルに分けるイメージ)

\(|\omega|\)が大きい成分は 高周波成分 、小さい成分は 低周波成分 と呼ばれる。とくに\(\omega=0\)の成分は定数であり、 直流成分 と呼ばれる。

Hide code cell source
import numpy as np
import matplotlib.pyplot as plt

# サンプルデータを生成する
N = 1000
d = 0.0001 # サンプリング周期
t = np.arange(0, N * d, d) # 時間

def f(t):
    freq1, freq2 = 100, 500  # 周波数
    s1, s2 = 1.5, 2 # スペクトル F(ω)
    return s1 * np.sin(2 * np.pi * t * freq1) + s2 * np.sin(2 * np.pi * t * freq2)

y = f(t)
F = np.fft.fft(y) # フーリエ変換
freq = np.fft.fftfreq(N, d=d)  # 周波数スケール

# 振幅スペクトル Amplitude の取得
# 振幅スペクトルは信号をフーリエ変換した結果の絶対値をとったもの
Amp = np.abs(F)
Amp = Amp / (N / 2) # 正規化

# 結果をプロット
fig, axes = plt.subplots(nrows=2)
axes[0].plot(t, y)
axes[0].set(title=r'Original Function $f(t)$', xlabel=r"$t$", ylabel=r"f(t)")

# 左右対称なので正の値だけ N//2 で取り出す
axes[1].stem(freq[:N//2], Amp[:N//2], 'r', markerfmt=" ", basefmt=" ")
axes[1].set(title=f'Fourier Transform $F(\omega)$', xlabel=r'Frequency $ω$', ylabel=r'Magnitude $F(ω)$')

fig.tight_layout()
fig.show()
../../_images/4f7d903ce6266ac46fad0197fa5b25a492a01c7856daa2b4a6d705ccf05d0c12.png

例:矩形窓#

次の関数は幅\(W\)矩形窓(rectangular window) と呼ばれる

\[\begin{split} w(t)=\left\{\begin{array}{cc} 1 / 2 W & -W \leq t \leq W \\ 0 & \text { それ以外 } \end{array}\right. \end{split}\]

このフーリエ変換は

\[\begin{split} \begin{aligned} W(\omega) &=\frac{1}{2 W} \int_{-W}^W e^{-i \omega t} \mathrm{~d} t \\ &=\frac{1}{2 W} \int_{-W}^W(\cos \omega t-i \sin \omega t) \mathrm{d} t \quad (オイラーの式より e^{-i \omega t} = \cos \omega t-i \sin \omega t)\\ &=\frac{1}{2 W} \left( \int_{-W}^W \cos \omega t ~\mathrm{d} t - \int_{-W}^W i \sin \omega t ~\mathrm{d} t \right) \quad (\because 積分の線形性) \\ &=\frac{1}{2W} \int_{-W}^W \cos \omega t ~ \mathrm{d} t \quad (\because \sinは奇関数すなわち \sin(-\theta) = -\sin(\theta) であり、-Wから+Wまで積分したら0になるため消える ) \\ &=\frac{1}{W} \int_0^W \cos \omega t \mathrm{~d} t \quad (\because \int_{-W}^W \cos \omega t ~ \mathrm{d} t = 2 \int_{0}^W \cos \omega t ~ \mathrm{d} t ) \\ &=\frac{1}{W}\left[ \frac{\sin \omega t}{\omega} \right]_0^W \quad (\because \int \cos (\omega t) d t=\frac{\sin (\omega t)}{\omega} ) \\ &=\frac{1}{W} \left( \frac{\sin \omega W}{\omega} - \frac{\sin 0}{\omega} \right) \\ &=\frac{\sin W \omega}{W \omega} \quad (\because \sin 0 = 0) \\ &=\operatorname{sinc} \frac{W}{\pi} \omega \end{aligned} \end{split}\]

となる。ただし、

\[ \operatorname{sinc} x :=\frac{\sin \pi x}{\pi x} \]

と定義する。

Hide code cell source
# 参考:numpyの高速フーリエ変換 fft を使う場合
# 自分で離散的なデータポイントからフーリエ変換するのは離散フーリエ変換を学んでからやる
import numpy as np
import matplotlib.pyplot as plt

fig, ax = plt.subplots(figsize=(4, 3))

# もとの関数 f(t)
w = 1.5  # width
def f(t):
    return (1/2*w) * 1 * ((-w <= t) & (t <= w))

t = np.linspace(-3, 3, 100)
y = f(t)
ax.plot(t, f(t), label="f(t)", color="black", alpha=0.8)

# フーリエ変換 F(omega)
fourier = np.fft.fft(y)
inv_fourier = np.fft.ifft(fourier).real  # 実部のみ
ax.plot(t, inv_fourier, label=r"$\hat{f}(f)$", color="red", linestyle="--", alpha=0.7)

ax.set(xlabel="t", ylabel="f(t)")
ax.legend()
plt.show()
../../_images/1b4d72bebb394e30872fa8ad40b68bcabc8503369137bd76c5c17d0f6cf7880b.png

次の関数\(w(t)\) を幅\(\sigma\)ガウス窓(Gaussian window) という。

\[ w(t)=\frac{1}{\sqrt{2 \pi} \sigma} e^{-t^2 / 2 \sigma^2} \]

このフーリエ変換は

\[\begin{split} \begin{aligned} W(\omega) &= \int_{-\infty}^{\infty} w(t) e^{-i \omega t} \mathrm{~d} t \\ &= \frac{1}{\sqrt{2 \pi} \sigma} \int_{-\infty}^{\infty} e^{-t^2 / 2 \sigma^2} e^{-i \omega t} \mathrm{~d} t \\ &= \frac{1}{\sqrt{2 \pi} \sigma} \int_{-\infty}^{\infty} e^{-( \frac{t^2}{2 \sigma^2} + i \omega t)} \mathrm{~d} t \quad ( 指数法則 a^{n}a^m=a^{n+m})\\ &= \frac{1}{\sqrt{2 \pi} \sigma} \int_{-\infty}^{\infty} e^{-\left(t+i \sigma^2 \omega\right)^2 / 2 \sigma^2-\sigma^2 \omega^2 / 2} \mathrm{~d} t \quad (平方完成したり色々いじるとこうなる) \\ &= \left(\frac{1}{\sqrt{2 \pi} \sigma} \int_{-\infty}^{\infty} e^{-\left(t+i \sigma^2 \omega\right)^2 / 2 \sigma^2} \mathrm{~d} t\right) e^{-\sigma^2 \omega^2 / 2} \end{aligned} \end{split}\]

ここで \(z=t+i \sigma^2 \omega\)と変数変換すると

\[\begin{split} \begin{aligned} W(\omega) & =\left(\frac{1}{\sqrt{2 \pi} \sigma} \int_{-\infty}^{\infty} e^{-z^2 / 2 \sigma^2} \mathrm{~d} z\right) e^{-\sigma^2 \omega^2 / 2} \\ & =e^{-\sigma^2 \omega^2 / 2}\\ &=\frac{\sqrt{2 \pi}}{\sigma}\left(\frac{1}{\sqrt{2 \pi} \sigma^{-1}} e^{-\omega^2 / 2 \sigma^{-2}}\right) \end{aligned} \end{split}\]

となる

Hide code cell source
from scipy import signal
import matplotlib.pyplot as plt
window = signal.windows.gaussian(51, std=7)
fig, ax = plt.subplots(figsize=(4, 2))
ax.plot(window)
ax.set(title=r"Gaussian window ($\sigma$=7)", ylabel="Amplitude", xlabel="Sample")
fig.show()
../../_images/ac55e801e7f21fb075df928dffb7415c5cb54572e52eadfae82d9d765bea460f.png
Hide code cell source
import numpy as np
from scipy import signal
from scipy.fft import fft, fftshift
import matplotlib.pyplot as plt

fig, ax = plt.subplots(figsize=(4, 2.4))

window = signal.windows.gaussian(51, std=7)
A = fft(window, 2048) / (len(window)/2.0)
freq = np.linspace(-0.5, 0.5, len(A))
response = 20 * np.log10(np.abs(fftshift(A / abs(A).max())))
ax.plot(freq, response)
ax.plot(window)
ax.set(title=r"Frequency response of the Gaussian window ($\sigma$=7)",
       ylabel="Normalized magnitude [dB]", xlabel="Normalized frequency [cycles per sample]",
       xlim=(-0.5, 0.5), ylim=(-120, 0))
fig.show()
../../_images/ae9cea9a34b1cc8e370776f475aa05a1f9493b6bef0f56ea4715673700db54c3.png

(出典:gaussian — SciPy v1.14.1 Manual

畳み込み積分#

たたみこみ積分

次の積分を信号 \(f(t), g(t)\)たたみこみ積分 (convolution) または 合成積 と呼ぶ

\[ f(t) * g(t)=\int_{-\infty}^{\infty} f(s) g(t-s) \mathrm{d} s \]

(左辺の積分における\(f\)\(g\)の変数の和が\(s + t-s = t\)となっている)

畳み込み積分は分配法則、交換法則、結合法則が成り立つ

  • 分配法則: \(f(t) *(a g(t)+b h(t))=a f(t) * g(t)+b f(t) * h(t)\)

  • 交換法則:\(f(t) * g(t)=g(t) * f(t)\)

  • 結合法則:\((f(t) * g(t)) * h(t)=f(t) *(g(t) * h(t))\)

定理(信号の合成積はフーリエ変換の積)

信号 \(f(t), g(t)\) のフーリエ変換をそれぞれ \(F(\omega), G(\omega)\) とするとき、 \(f(t) * g(t)\) のフーリエ変換は \(F(\omega) G(\omega)\) である

証明

\(f(t) * g(t)\)のフーリエ変換は次のようになる

\[\begin{split} \begin{aligned} \int_{-\infty}^{\infty} f(t) * g(t) e^{-i \omega t} \mathrm{~d} t & =\int_{-\infty}^{\infty}\left(\int_{-\infty}^{\infty} f(s) g(t-s) \mathrm{d} s\right) e^{-i \omega t} \mathrm{~d} t \\ & =\int_{-\infty}^{\infty} f(s)\left(\int_{-\infty}^{\infty} g(t-s) e^{-i \omega t} \mathrm{~d} t\right) \mathrm{d} s \\ & =\int_{-\infty}^{\infty} f(s)\left(\int_{-\infty}^{\infty} g\left(t^{\prime}\right) e^{-i \omega\left(t^{\prime}+s\right)} \mathrm{d} t^{\prime}\right) \mathrm{d} s \\ & =\int_{-\infty}^{\infty} f(s)\left(\int_{-\infty}^{\infty} g\left(t^{\prime}\right) e^{-i \omega t^{\prime}} \mathrm{d} t^{\prime}\right) e^{-i \omega s} \mathrm{~d} s \\ & =\left(\int_{-\infty}^{\infty} f(s) e^{-i \omega s} \mathrm{~d} s\right)\left(\int_{-\infty}^{\infty} g\left(t^{\prime}\right) e^{-i \omega t^{\prime}} \mathrm{d} t^{\prime}\right) \\ & =F(\omega) G(\omega) \end{aligned} \end{split}\]

(積分の順序を入れ換え、 \(t^{\prime}=t-s\) と変数変換し、 \(t=t^{\prime}+s\) を代入した)

一般に、ある集合に要素間の演算が定義されているものを 代数系 と呼ぶ。そして2つの異なる集合での演算が同じ規則に従うとき、2つの代数系は 同型 であるという。 関数の和\(+\)と畳み込み積分\(*\)に関する演算は、そのフーリエ変換の和\(+\)と積\(\times\)に関する演算と同じであり、両方の代数系が同型である。

フィルター#

信号 \(f(t)\) の値を時刻 \(t\) をはさむ幅 \(2 W\) の区間で平均し、これを \(\tilde{f}(t)\) と定義する。

\[ \tilde{f}(t) := \frac{1}{2 W} \int_{-W}^W f(t-s) \mathrm{d} s \]

矩形窓やガウス窓\(w(t)\)を使うと、次のように書き直すことができる

\[ \tilde{f}(t)=\int_{-\infty}^{\infty} w(s) f(t-s) \mathrm{d} s=w(t) * f(t) \]

これにより、関数\(w(t)\)を様々な関数に変えれば信号\(f(t)\)の様々な変換ができる。このような操作を関数\(w(t)\)による フィルター という。

\(w(t), f(t)\)のフーリエ変換をそれぞれ\(W(\omega), F(\omega)\)とおけば、畳み込み積分の定理により\(\tilde{f}(t) = w(t)*f(t)\)のフーリエ変換は

\[ \tilde{F}(\omega) = W(\omega) F(\omega) \]

と書くことができる。

もし\(|\omega|\)が小さい部分で\(|W(\omega)|\)が大きく、\(|\omega|\)が大きい部分で\(|W(\omega)|\)が小さくなる場合、\(w(t)\)によるフィルターは低周波成分を増幅し、高周波成分を減衰させる。このようなフィルターを ローパスフィルター低域フィルター )と呼ぶ。その逆のフィルターを ハイパスフィルター高域フィルター )と呼ぶ。

その中間として、特定の\(|\omega|\)の付近を増幅し、それ以外を減衰させるフィルターは 帯域フィルターバンドパスフィルター )と呼ぶ。

fftconvolve — SciPy v1.14.1 Manual

ガウシアンブラーで画像を平滑化(ぼかす)例がある

Hide code cell source
import numpy as np
import matplotlib.pyplot as plt

N = 1000
t = np.linspace(0, 10, N)

def f(t):
    return np.sin(t) + 0.5 * np.sin(10 * t)

signal = f(t)

fig, ax = plt.subplots(figsize=(4, 3))
ax.plot(t, signal, label="f(t)", color="black", alpha=0.8)
ax.set(xlabel="t", ylabel="f(t)")

from scipy.signal.windows import gaussian
from scipy.signal import fftconvolve

def gaussian_smoothing(signal, window_size, std_dev):
    # ガウス窓を作成
    gauss_window = gaussian(window_size, std=std_dev)
    # gauss_window /= gauss_window.sum()  # 窓の正規化
    # 畳み込み
    return fftconvolve(signal, gauss_window, mode='same')  # 同じ長さを保つ

smoothed_signal = gaussian_smoothing(signal, window_size=N//2, std_dev=0.25)
ax.plot(t, smoothed_signal, label=r"$\tilde{f}(t)$", color="steelblue", alpha=0.8)
ax.legend()
fig.show()
../../_images/b53b41a4dda7e16ce748eff79607c621c5d51c1928eaafe22598346cd82a961c.png

小まとめ

信号\(f(t)\)をフーリエ変換

\[ F(\omega)=\int_{-\infty}^{\infty} f(t) e^{-i \omega t} \mathrm{~d} t \]

して、個々の\(\omega\)に対応するスペクトル(周波数\(\omega\)の影響度の強さ)\(F(\omega)\)を得ることができ、またそれにより\(f(t)\)に含まれる周波数ごとの正弦波\(e^{i\omega t}\)も分解できる。

そして窓関数\(w(t)\)による畳み込み

\[ \tilde{f}(t) = w(t) * f(t) = \int_{-\infty}^{\infty} w(s) f(t-s) \mathrm{d} s \]

をすることで、特定の周波数をカットするなどの変換を行って信号を変換することができる。

一つの身近な具体例は画像に対するガウシアンフィルタ(ガウシアン平滑化・ガウシアンブラー)によるぼかし

参考#