Commit 940ad2f5 authored by oscar's avatar oscar

删除无用的文件

parent 4225c4eb
#ifndef _BEV_OVERLAP_ONLINE_H_
#define _BEV_OVERLAP_ONLINE_H_
#include <cassert>
#include <cuda_runtime_api.h>
void bev_overlap(const int num_a, float* boxes_a, const int num_b, float* boxes_b, float* ans_overlap);
#endif
\ No newline at end of file
#ifndef _KALMAN_UPDATE_BATCH_ONLINE_H_
#define _KALMAN_UPDATE_BATCH_ONLINE_H_
#include <cassert>
#include <cuda_runtime_api.h>
void kalman_update_batch(float* Z,// measurement size = bs * no
float** X, // in-place update states size = bs * ns
float** P, // in-place update predict size = bs * ns * ns
float* HX, // H*X size = bs * no
const int bs,
const int ns, //ns = 10
const int no // no = 7
);
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment