Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the all-in-one-seo-pack domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /virtual/mcu03iphuk/public_html/radiology-technologist.info/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the easy-fancybox domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /virtual/mcu03iphuk/public_html/radiology-technologist.info/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the urvanov-syntax-highlighter domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /virtual/mcu03iphuk/public_html/radiology-technologist.info/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the breadcrumb-navxt domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /virtual/mcu03iphuk/public_html/radiology-technologist.info/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the advanced-ads domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /virtual/mcu03iphuk/public_html/radiology-technologist.info/wp-includes/functions.php on line 6114

Notice: 関数 _load_textdomain_just_in_time が誤って呼び出されました。lancr ドメインの翻訳の読み込みが早すぎました。これは通常、プラグインまたはテーマの一部のコードが早すぎるタイミングで実行されていることを示しています。翻訳は init アクション以降で読み込む必要があります。 詳しくは WordPress のデバッグをご覧ください。 (このメッセージはバージョン 6.7.0 で追加されました) in /virtual/mcu03iphuk/public_html/radiology-technologist.info/wp-includes/functions.php on line 6114
Pythonで画像をフーリエ変換してフィルタをかけてみた | 診療放射線技師がPythonをはじめました。

Pythonで画像をフーリエ変換してフィルタをかけてみた

画像をフーリエ変換して何をするかといえば、やっぱりフィルタですよね。

ということで今回は画像をフーリエ変換してローパスフィルタ、ハイパスフィルタを試してみたのでそれを記事にします。

今回使用する画像は以下の画像です。


ローパスフィルタ

まず初めに単純に高周波成分をカットして低周波成分だけを通過させるローパスフィルタを試してみました。

やり方は簡単で、フーリエ変換して位相シフトした画像と同じサイズの配列を作成し低周波成分にあたる部分を1、高周波成分にあたる部分を0とします。

その配列と、フーリエ変換後の配列を掛け算することでできます。

画像が小さくてわかりずらいかもしれませんが、画像のシャープさがなくなっているのが分かります。(クリックすると拡大します。)


フィルタの1の領域をもう少し小さくしてみます。上記コードの14行目を書き換えます。

前のフィルタの1/10にしたらアイソトープのような分解能の画像になってしまいました。。。。。


広告
デル株式会社

ハイパスフィルタ

今度はハイパスフィルタをやってみます。

先ほどは、0で初期値設定した配列を作成しましたが、今度は1で初期化した配列を作成し、中心部を0で埋めた配列を作成してハイパスフィルタを作成します。

いかがでしょう!!今度は輪郭部分が強調された画像が作成されました。


広告
HP Directplus -HP公式オンラインストア-

最後に

原理は分かっていても、実際にコードを組んでやってみるとおもしろいですね。

今回は簡単なフィルタでしかも、フィルタが1というものしか試していませんが、1.5や2といったものを試してみても面白いかもしれませんね。

ぜひとも、試してみてください。

おつかれさまでした。



広告
上新電機 パソコン買取サービス

Tags: