Files
UR/src/common/estimatePulseLength.h
2023-10-09 09:29:21 +08:00

17 lines
292 B
C++

#ifndef ESTIMATE_PULSE_LENGTH_H
#define ESTIMATE_PULSE_LENGTH_H
#include "Matrix.h"
namespace Recon
{
struct CeEstimatePulseLength
{
Aurora::Matrix ce;
float ce_sf;
};
float estimatePulseLength(const CeEstimatePulseLength& aCe, float aSampleFreq);
}
#endif