Files
radar_data_process/data_process_class_dll/track_die.h
T
waiwaylee 01d28e0d28 更新:1、使用VS code+cmake重新编译,编译器保持不变;
2、修复若干逻辑bug,具体参考BUG_FIX_REPORT.md

Signed-off-by: waiwaylee <waiwaylee@foxmail.com>
2026-08-18 11:26:19 +08:00

18 lines
385 B
C++

#ifndef TRACK_DIE_H
#define TRACK_DIE_H
#include "data_process_class_dll.h"
#include "parameters.h"
#include "struct.h"
#include <vector>
using namespace std;
class Track_Die
{
public:
void track_die_process( std::vector <Trust_Track> *trust_track,
int Track_die_Index_Output[],
int *Track_die_num_Output);
};
#endif // TRACK_DIE_H