POINTSPREADFUNCTION

typedef struct _POINTSPREADFUNCTION 
{ 
   L_UINT uStructSize; 
   L_UINT nHeight; 
   L_UINT nWidth; 
   L_DOUBLE* pValues; 
} POINTSPREADFUNCTION, *pPOINTSPREADFUNCTION; 

The POINTSPREADFUNCTION structure contains the point spread function that will be used when applying a Wiener filter to an image.

Members

uStructSize

Size of this structure in bytes, for versioning. Use the sizeof() operator to calculate this value.

nHeight

The height of the point spread function.

nWidth

The width of the point spread function.

pValues

An array of double values that represents the values of the point spread function.

Comments

pPOINTSPREADFUNCTION is a pointer to a POINTSPREADFUNCTION structure. If the function parameter type is pPOINTSPREADFUNCTION, you can declare a POINTSPREADFUNCTION variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pPOINTSPREADFUNCTION variable is necessary only if your program requires a pointer.

The structure is used by:

Help Version 20.0.2020.4.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C API Help