Page 1 of 1

A question about using TImageEn Class?

PostPosted: June 23rd, 2005, 5:35 am
by hadipardis
Hi
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 :wink:

PostPosted: June 23rd, 2005, 9:42 am
by Stefan
ctrl+click on it

PostPosted: June 25th, 2005, 5:36 am
by hadipardis
Hi
But there is not any related unit for it. Please try it!!!