Delphi 6 or 7 has a Image Processing Package which name is ImageEn.
This Package consists of some other units such as ImageEnView , ImageEnProc,ImageEnIO and etc.
It is possible to create an FFT (Fast Fourier Transform) Image from an arbitrary input image by using the following code:
- Code: Select all
var ftImage:TIEftimage;
im:TImageEnProc;
im:=TImageEnProc.Create(self);
ftImage:=im.FTCreateImage(...);
....
The above code is taken from the delphi help by searching "FTCreateImage" which you can find the full code there.
But my question is about the "TIEftImage" type. Now, Could you tell me where I can find the related unit that defines this special type?
Thanks