Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
PPC-BSC
Software
Masa Protocol
Commits
543f6004
Commit
543f6004
authored
Feb 15, 2022
by
vmasip
Browse files
RoadUser has no error field.Now is precision again
parent
226caccb
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/objects.hpp
View file @
543f6004
...
...
@@ -61,7 +61,7 @@ struct RoadUser{
std
::
vector
<
uint16_t
>
camera_id
;
float
latitude
;
float
longitude
;
float
error
;
//in meter
float
precision
;
//in meter
std
::
vector
<
uint16_t
>
object_id
;
//local tracker id
uint8_t
speed
;
uint16_t
orientation
;
...
...
@@ -72,7 +72,7 @@ struct RoadUser{
template
<
class
Archive
>
void
serialize
(
Archive
&
archive
)
{
archive
(
camera_id
,
latitude
,
longitude
,
object_id
,
error
,
speed
,
orientation
,
category
);
archive
(
camera_id
,
latitude
,
longitude
,
object_id
,
precision
,
speed
,
orientation
,
category
);
}
};
...
...
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