This function computes the inverse Discrete Cosine Transform of the input HIGCOMPLEXOBJ data.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_FIP_DCT_inverse( HIGCOMPLEXOBJ hIGComplexObj, LPHIGCOMPLEXOBJ lphIGComplexObjOut ); |
Name | Type | Description |
---|---|---|
hIGComplexObj | HIGCOMPLEXOBJ | HIGCOMPLEXOBJ handle of data to be processed. |
lphIGComplexObjOut | LPHIGCOMPLEXOBJ | HIGCOMPLEXOBJ handle of result data. |
Returns the number of ImageGear errors that occurred during this function call.
All pixel formats supported by HIGCOMPLEXOBJ object. See IG_FIP_co_obj_create.
FreqIP
Copy Code
|
|
---|---|
HIGCOMPLEXOBJ hIGComplexObj; /* HIGCOMPLEXOBJ handle of input data */ HIGCOMPLEXOBJ hIGComplexObjOut; /* HIGCOMPLEXOBJ handle of output data */ ... IG_FIP_DCT_inverse(hIGComplexObj, &hIGComplexObjOut); ... |