Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
J
jfx_kalman_filter_src
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
oscar
jfx_kalman_filter_src
Commits
c81a9428
Commit
c81a9428
authored
Dec 15, 2021
by
oscar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交gpu文件
parent
f56f13f3
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
29 additions
and
1 deletion
+29
-1
bev_overlap_online.cu
BaseTracker/kf_gpu/bev_overlap_online.cu
+2
-1
bev_overlap_online.h
BaseTracker/kf_gpu/bev_overlap_online.h
+10
-0
common.h
BaseTracker/kf_gpu/common.h
+0
-0
kalman_batch_ops.cu
BaseTracker/kf_gpu/kalman_batch_ops.cu
+0
-0
kalman_update_batch_online.cu
BaseTracker/kf_gpu/kalman_update_batch_online.cu
+0
-0
kalman_update_batch_online.h
BaseTracker/kf_gpu/kalman_update_batch_online.h
+17
-0
No files found.
BaseTracker/kf_g
up
/bev_overlap_online.cu
→
BaseTracker/kf_g
pu
/bev_overlap_online.cu
View file @
c81a9428
...
...
@@ -374,7 +374,8 @@ void map_bev_overlap(const int num_a, pybind11::array_t<float> boxes_a,const int
free(b_row_ptr);
}
void bev_overlap(const int num_a, float* boxes_a, const int num_b, float* boxes_b, float* ans_overlap) {
void bev_overlap(const int num_a, float* boxes_a, const int num_b, float* boxes_b, float* ans_overlap)
{
//pybind11::buffer_info bx_a = boxes_a.request();
//pybind11::buffer_info bx_b = boxes_b.request();
...
...
BaseTracker/kf_gpu/bev_overlap_online.h
0 → 100644
View file @
c81a9428
#ifndef _BEV_OVERLAP_ONLINE_H_
#define _BEV_OVERLAP_ONLINE_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
BaseTracker/kf_g
up
/common.h
→
BaseTracker/kf_g
pu
/common.h
View file @
c81a9428
File moved
BaseTracker/kf_g
up
/kalman_batch_ops.cu
→
BaseTracker/kf_g
pu
/kalman_batch_ops.cu
View file @
c81a9428
File moved
BaseTracker/kf_g
up
/kalman_update_batch_online.cu
→
BaseTracker/kf_g
pu
/kalman_update_batch_online.cu
View file @
c81a9428
File moved
BaseTracker/kf_gpu/kalman_update_batch_online.h
0 → 100644
View file @
c81a9428
#ifndef _KALMAN_UPDATE_BATCH_ONLINE_H_
#define _KALMAN_UPDATE_BATCH_ONLINE_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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment