summaryrefslogtreecommitdiff
path: root/html/examples/fft.lua
diff options
context:
space:
mode:
Diffstat (limited to 'html/examples/fft.lua')
-rw-r--r--html/examples/fft.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/html/examples/fft.lua b/html/examples/fft.lua
new file mode 100644
index 0000000..3589635
--- /dev/null
+++ b/html/examples/fft.lua
@@ -0,0 +1,17 @@
+require"imlua"
+require"imlua_process"
+require"imlua_fftw"
+
+local filename = "lena.jpg"
+local image = im.FileImageLoad(filename)
+
+local complex = im.ImageCreate(image:Width(), image:Height(), image:ColorSpace(), im.CFLOAT)
+im.ProcessFFT(image, complex)
+
+local c = complex[0][5][10] -- component=0(Red), y = 5 x =10
+print(c[1], c[2])
+
+complex[0][5][10] = { 2*c[1], c[2]/2 }
+
+local c = complex[0][5][10]
+print(c[1], c[2])