0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

フィルタとエッジ検出についての新たな発見 New Findings about Filters and Edge Detection

Last updated at Posted at 2020-12-22

少しラプラシアンフィルタについて勉強していたら、面白いことを発見した。
ラプラシアンフィルタは画像のエッジ検出を行うフィルタである。これをカーネルで表すと、Aで表される。ここで$A + B = I$ となるような行列を求める。ちなみに$I$は単位行列である。

A=
\begin{pmatrix}
0 & 1 & 0\\
1 & -4 & 1\\
0 & 1 & 0
\end{pmatrix}

Bを求めると下記のようになるが、一般的にAが画像のエッジ検出で使われたら、Bは元の画像に近いものをアウトプットする。

B=
\begin{pmatrix}
1 & -1 & 0\\
-1 & 5 & -1\\
0 & -1 & 1
\end{pmatrix}

下がカーネルにAを使った時のアウトプットである。
111.GIF
下がAの代わりにBを使った時のアウトプットである。
113.GIF
これはラプラシアンフィルタにだけ言えるのでなく、他のフィルタにも応用がきくと思われる。

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?