MCPcopy Create free account
hub / github.com/cpvrlab/ImagePlay / init

Method init

IPL/src/processes/IPLIFFT.cpp:23–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21
22
23void IPLIFFT::init()
24{
25 // init
26 _result = NULL;
27
28 // basic settings
29 setClassName("IPLIFFT");
30 setTitle("Inverse FFT");
31 setCategory(IPLProcess::CATEGORY_FOURIER);
32 setDescription("Inverse Fast Fourier Transform.");
33 setKeywords("IFFT");
34
35 // inputs and outputs
36 addInput("Complex Image", IPL_IMAGE_COMPLEX);
37 addOutput("Grayscale Image", IPL_IMAGE_GRAYSCALE);
38
39 // properties
40 //addProcessPropertyInt("mode", "Windowing Function:None|Hanning|Hamming|Blackman|Border", "", IPL_INT_RADIOBUTTONS, 0);
41}
42
43void IPLIFFT::destroy()
44{

Callers

nothing calls this directly

Calls 5

setClassNameFunction · 0.85
setTitleFunction · 0.85
setCategoryFunction · 0.85
setDescriptionFunction · 0.85
setKeywordsFunction · 0.85

Tested by

no test coverage detected