Signed-off-by: Yang Jianchao <yangjianchao999@126.com>

This commit is contained in:
Yang Jianchao
2022-05-19 09:58:30 +08:00
commit 591fa491e2
1946 changed files with 442413 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
#ifndef DOT_COH_H
#define DOT_COH_H
#include "data_process_class_dll.h"
#include "parameters.h"
#include "struct.h"
#include <QVector>
using namespace std;
/******************************* 点迹凝聚类 **************************************************/
class Dot_Coh
{
public:
// 点迹凝聚函数
int dot_coh_process( QVector <PointRecv> *data_input, //输入的点迹
int beam_input[3], //输入点迹的波位号
QVector <QVector<PointRecv>> *point_recv, //输出点迹
struct RadarPara Work_Parameter //工作参数
);
//构造函数
Dot_Coh();
private:
QVector <PointRecv> data_buffer_1; //数据缓存
QVector <PointRecv> data_buffer_2;
QVector <PointRecv> data_buffer_3;
};
#endif // DOT_COH_H