多语言展示
当前在线:1006今日阅读:195今日分享:41

【图像处理】Mathematica的图像Fourier变换

本文,使用Mathematica的Fourier命令,对图片进行变换。
工具/原料
1

电脑

2

Mathematica

方法/步骤
1

把下面的图片转化为像素数组的形式:a = Import['0.png'] // ImageData;

2

对数据进行Fourier变换:b = Fourier[a];简单而且霸道。可视化也很简单:b // Image

3

还可以增加亮度:b*5 // Image

5

Abs[b]*5 // Image

6

Log[Abs[b]*50] // Image

推荐信息