2、TWS点迹关联时增加点航距离门限,限制部分突然关联到很远的点迹的问题。 Signed-off-by: waiwaylee <waiwaylee@foxmail.com>
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
#ifndef DOT_COH_H
|
|
#define DOT_COH_H
|
|
#include "data_process_class_dll.h"
|
|
#include "parameters.h"
|
|
#include "struct.h"
|
|
#include <QVector>
|
|
#include <QDebug>
|
|
|
|
using namespace std;
|
|
|
|
/******************************* 点迹凝聚类 **************************************************/
|
|
class Dot_Coh
|
|
{
|
|
public:
|
|
|
|
// 点迹凝聚函数
|
|
int dot_coh_process( QVector <PointRecv> *data_input, //输入的点迹
|
|
QVector <PointRecv> *point_recv, //输出点迹
|
|
struct RadarPara Work_Parameter //工作参数
|
|
);
|
|
|
|
//点迹凝聚函数,缓存一帧,一边输出,一边进行滑窗凝聚
|
|
int dot_coh_process_buff( QVector <PointRecv> *data_input, //输入的点迹
|
|
QVector <PointRecv> *point_recv, //输出点迹
|
|
struct RadarPara Work_Parameter //工作参数
|
|
);
|
|
|
|
|
|
|
|
|
|
//构造函数
|
|
Dot_Coh();
|
|
|
|
|
|
|
|
|
|
private:
|
|
QVector <PointRecv> data_input_buff;
|
|
|
|
|
|
};
|
|
|
|
#endif // DOT_COH_H
|