|
IUF-SDK-3
Interventional Ultrasound Library
|
Data Structures | |
| struct | IufFirFilter |
Functions | |
| iuff_t | iufFirFilterCreate (int kernelSize) |
Create a FIR filter with n,m coefficients of kernelSize values. More... | |
| int | iufFirFilterDelete (iuff_t filter) |
| Frees the memory of the FirFilter object. More... | |
| int | iufFirFilterCompare (iuff_t reference, iuff_t actual) |
| Checks if two FirFilters are equal. More... | |
| int | iufFirFilterGetKernelSize (iuff_t filter) |
| Get the number of filter coefficients that the FirFilter has. More... | |
| float | iufFirFilterGetCoefficient (iuff_t filter, int index) |
Get the gain value of a point in the TGC function at index. More... | |
| int | iufFirFilterSetCoefficient (iuff_t filter, int index, float coefficient) |
Set a Filter COefficient at index. More... | |
| int | iufFirFilterSave (iuff_t filter, hid_t handle) |
| iuff_t | iufFirFilterLoad (hid_t handle) |
| iuff_t iufFirFilterCreate | ( | int | kernelSize | ) |
Create a FIR filter with n,m coefficients of kernelSize values.
| kernelSize | The number of filter coefficients |
| int iufFirFilterDelete | ( | iuff_t | filter | ) |
Frees the memory of the FirFilter object.
| filter | The object to delete |
| float iufFirFilterGetCoefficient | ( | iuff_t | filter, |
| int | index | ||
| ) |
Get the gain value of a point in the TGC function at index.
| filter | The FirFilter object of interest |
| index | The index of the kernel |
| int iufFirFilterGetKernelSize | ( | iuff_t | filter | ) |
Get the number of filter coefficients that the FirFilter has.
| filter | The FirFilter object of interest |
| iuff_t iufFirFilterLoad | ( | hid_t | handle | ) |
| int iufFirFilterSave | ( | iuff_t | filter, |
| hid_t | handle | ||
| ) |
| int iufFirFilterSetCoefficient | ( | iuff_t | filter, |
| int | index, | ||
| float | coefficient | ||
| ) |
Set a Filter COefficient at index.
| filter | The FirFilter of interest |
| index | The index of the kernel |
| coefficient | The filter coefficient value |