Files
UR/src/common/estimatePulseLength.h

17 lines
292 B
C
Raw Normal View History

#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-10-09 09:29:21 +08:00
float estimatePulseLength(const CeEstimatePulseLength& aCe, float aSampleFreq);
}
#endif