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
b6641a60
Commit
b6641a60
authored
Nov 03, 2022
by
oscar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交把float修改位double类型
parent
587f3fe9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Component.cpp
common/Component.cpp
+1
-1
Component.h
common/Component.h
+1
-1
No files found.
common/Component.cpp
View file @
b6641a60
...
...
@@ -118,7 +118,7 @@ float calcIntersectionRate(cv::RotatedRect rect1, cv::RotatedRect rect2)
return
iou_2d
;
}
double
calculate_angle
(
std
::
vector
<
std
::
vector
<
float
>>&
points
)
double
calculate_angle
(
std
::
vector
<
std
::
vector
<
double
>>&
points
)
{
if
(
points
.
size
()
<
5
)
return
0
;
...
...
common/Component.h
View file @
b6641a60
...
...
@@ -20,4 +20,4 @@ double calcIntersectionArea(cv::RotatedRect rect1, cv::RotatedRect rect2);
float
calcIntersectionRate
(
cv
::
RotatedRect
rect1
,
cv
::
RotatedRect
rect2
);
double
calculate_angle
(
std
::
vector
<
std
::
vector
<
float
>>&
points
)
double
calculate_angle
(
std
::
vector
<
std
::
vector
<
double
>>&
points
)
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