2023-05-19 10:28:22 +08:00
|
|
|
#ifndef ESTIMATE_PULSE_LENGTH_H
|
|
|
|
|
#define ESTIMATE_PULSE_LENGTH_H
|
|
|
|
|
|
|
|
|
|
#include "Matrix.h"
|
|
|
|
|
|
|
|
|
|
namespace Recon
|
|
|
|
|
{
|
|
|
|
|
struct CeEstimatePulseLength
|
|
|
|
|
{
|
|
|
|
|
Aurora::Matrix ce;
|
2023-10-09 09:29:21 +08:00
|
|
|
float ce_sf;
|
2023-05-19 10:28:22 +08:00
|
|
|
};
|
|
|
|
|
|
2023-10-09 09:29:21 +08:00
|
|
|
float estimatePulseLength(const CeEstimatePulseLength& aCe, float aSampleFreq);
|
2023-05-19 10:28:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|