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で画像をフーリエ変換していろいろ試してみた


今回は基本的なことになりますが、フーリエ変換後の周波数領域のサイズを変更したら実画像のサイズがどうなるのか、次に中心周波数を少しずらしたどうなるのか、最後にMRIでよくあるパーシャルフーリエを試したことを記事にします。


周波数領域のサイズを変更してみた

まず確認として、周波数領域のサイズを変更したらそれに応じて実画像のサイズも変わるのかを試してみました。今回も、前回と同じ以下の画像を用いて行います。

まずは、以下のコードで確認

結果は

同一サイズになっています。それでは周波数領域の画像サイズを変更してみます。まずは、縮小です。

結果は

結果は、周波数領域をサイズを変えれば逆フーリエ変換した画像もサイズがかわる。あたりまえか・・・・

でも、面白いのが周波数領域のサイズを変更しても、実画像が切れるわけではなく、縮小されているのが面白いですね。。。。。(これも当たり前ですね。。)

今回は、縦方向の周波数領域を縮小しましたが、横方向に縮小しても同様の結果が起こります。

それでは、周波数領域のサイズを拡張したらどうなるのかなと思い試してみました。

元の画像サイズを100ピクセルずつ拡張して、その中心に元の周波数データを格納します。そしてそれを逆フーリエ変換しました。

結果は

見えずらいかもしれませんが、周波数領域がきちんと拡張されており、それを逆フーリエ変換したものの画像サイズも大きくなっています。

結果、実画像と、フーリエ変換した画像サイズは同じ。周波数サイズを大きくして逆フーリエ変換すればその実画像のサイズも大きくなるという事でした。


広告
デル株式会社

位相を少しずらしてみた

今度は、位相を少しずらしてみたいと思います。

先ほどのコードで画像サイズを100ピクセル拡大した配列に元データを挿入したのですが、その位置を上下左右ずらしてみました。

まずは、横方向に10ピクセルずらしてみます。

上記コードの14行目を以下に変更します。

横方向にずらしたら縦方向に黒い線が現れました。

それでは、縦方向にずらしてみます。

今度は、横方向に黒い線が現れました。

今度はシフト量を変化してみます。

縞の間隔が狭くなりました。

原因は。。。。勉強不足でわかりません。誰か教えてください。でも、面白いですね。


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

パーシャルフーリエを試してみた

最後に、MRIでよくあるパーシャルフーリエです。

撮像時間短縮のために、全データを収集するのではなく一部を収集して画像を作成するというものです。

周波数成分の下側20%程度の信号を0に書き換えてやってみます。

おお!!きちんとできました。

正直、変な画像になるのかなと思っていたのですがきちんとできるものなのですね。

分解能とか確かめてみたいなと思うのですが、また今度の機会にしたいと思います。


広告
BTOパソコン・パソコン関連商品がお買い得!パソコン工房のセール

最後に

今回は、周波数成分をいろいろといじってみた結果を記事にしてみました。

いいままで、周波数領域でいろいろとやるのは敷居が高く避けていたのですが今回やってみて、ちょっと苦手意識がなくなった気がします。

もし、興味がある方はやってみてください。

それでは、おつかれさまでした。

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

Tags: