MF_Parzen
| MD_Parzen |
ME_Parzen |
|
Function | two-dimensional Parzen window for spatial frequency analysis |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Parzen( fMatrix MA, ui ht, ui len ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Parzen( ); |
Pascal/Delphi | uses MFstd;
procedure MF_Parzen( MA:fMatrix; ht, len:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Parzen( fMatrix d_MA, ui ht, ui len );
void MFcu_Parzen( fMatrix h_MA, ui ht, ui len );
|
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Parzen( d_MA:fMatrix; ht, len:UIntSize ): IntBool;
procedure MFcu_Parzen( h_MA:fMatrix; ht, len:UIntSize );
|
|
Description | MAi,j = (1 - |(i - 0.5*(ht - 1)) / 0.5*(ht + 1)|) * (1 - |(j - 0.5*(len - 1)) / 0.5*(len + 1)|)
This function provides a window for spatial power-spectrum estimation with Welch's method of overlapping segments, here implemented as MF_spectrum. |
|
|