123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // File: CGaussianFilter.h
- //
- // MATLAB Coder version : 4.3
- // C/C++ source code generated on : 12-Jan-2022 14:46:32
- //
- #ifndef CGAUSSIANFILTER_H
- #define CGAUSSIANFILTER_H
- // Include Files
- #include <cstddef>
- #include <cstdlib>
- #include "rtwtypes.h"
- #include <omp.h>
- #include "GaussianFilter_types.h"
- // Type Definitions
- class CGaussianFilter
- {
- public:
- CGaussianFilter();
- ~CGaussianFilter();
- void GaussianFilter(const emxArray_real_T *x, emxArray_real_T *xlpf);
- static void SetPdoa1dEnable(bool bEnable);
- static bool GetPdoa1dEnable();
- static void SetPdoa1dDist(double dist);
- static double GetPdoa1dDist();
- private:
- static bool s_enabled_pdoa1d;
- static double s_pdoa1d_act_dist; // PDOA一维中高斯滤波的生效范围
- };
- #endif
- //
- // File trailer for CGaussianFilter.h
- //
- // [EOF]
- //
|