cyberax
4 days ago
One approach that blew my mind was the use of FFT to recognize objects.
FFT has this property that object orientation or location doesn't matter. As long as you have the signature of an object, you can recognize it anywhere!
changoplatanero
4 days ago
I believe orientation still matters but you’re right that position doesn’t.
Legend2440
4 days ago
FFT is equivalent to convolution, which is widely used today for object recognition in CNNs.
bobmcnamara
4 days ago
> FFT is equivalent to convolution
What do you mean by that? Could you give me an example?
kragen
3 days ago
The FFT, composed with pointwise multiplication, composed with the inverse FFT, is equivalent to convolution. The FFT is not.
timewizard
4 days ago
The basic convolution theorem.
bobmcnamara
3 days ago
That is something else entirely.
timewizard
3 days ago
Then if you know what the OP meant why did you ask?
Grimblewald
2 days ago
because they made a nonsensical claim that doesn't align with my (and likely their) understanding of what the FT is and does.
The FT is _NOT_ just a convolution, but under certain conditions a specific operation on FT terms is equivalent to a convolution.
bobmcnamara
2 days ago
I didn't know what they meant. There are so many FFT tricks. I was hoping this was another.