Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
its
cam_lidar_calibration
Commits
dbc5ba91
Commit
dbc5ba91
authored
Nov 11, 2019
by
James Ward
Browse files
Explicitly set default values for sample fields
parent
05962758
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/cam_lidar_calibration/optimiser.h
View file @
dbc5ba91
...
...
@@ -44,12 +44,12 @@ struct RotationTranslationCost // equivalent to y in matlab
struct
OptimisationSample
{
cv
::
Point3d
camera_centre
;
cv
::
Point3d
camera_normal
;
cv
::
Point3d
camera_centre
{
0
,
0
,
0
}
;
cv
::
Point3d
camera_normal
{
0
,
0
,
0
}
;
std
::
vector
<
cv
::
Point3d
>
camera_corners
;
cv
::
Point3d
lidar_centre
;
cv
::
Point3d
lidar_normal
;
cv
::
Point3d
lidar_corner
;
cv
::
Point3d
lidar_centre
{
0
,
0
,
0
}
;
cv
::
Point3d
lidar_normal
{
0
,
0
,
0
}
;
cv
::
Point3d
lidar_corner
{
0
,
0
,
0
}
;
std
::
vector
<
cv
::
Point3d
>
lidar_corners
;
};
...
...
Write
Preview
Supports
Markdown
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