Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vision
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
wolf_projects
wolf_lib
plugins
vision
Commits
9cd5e893
Commit
9cd5e893
authored
5 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Key string --> char
parent
4edbbc08
No related branches found
No related tags found
1 merge request
!24
After 2nd RAL submission
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/vision/factor/factor_pixel_hp.h
+1
-1
1 addition, 1 deletion
include/vision/factor/factor_pixel_hp.h
include/vision/factor/factor_trifocal.h
+3
-3
3 additions, 3 deletions
include/vision/factor/factor_trifocal.h
with
4 additions
and
4 deletions
include/vision/factor/factor_pixel_hp.h
+
1
−
1
View file @
9cd5e893
...
@@ -75,7 +75,7 @@ inline FactorPixelHp::FactorPixelHp(const FeatureBasePtr& _ftr_ptr,
...
@@ -75,7 +75,7 @@ inline FactorPixelHp::FactorPixelHp(const FeatureBasePtr& _ftr_ptr,
_ftr_ptr
->
getCapture
()
->
getSensorP
(),
_ftr_ptr
->
getCapture
()
->
getSensorP
(),
_ftr_ptr
->
getCapture
()
->
getSensorO
(),
_ftr_ptr
->
getCapture
()
->
getSensorO
(),
_landmark_ptr
->
getP
()),
_landmark_ptr
->
getP
()),
intrinsic_
(
_ftr_ptr
->
getCapture
()
->
getSensor
()
->
getIntrinsic
()
->
getState
())
//TODO: intrinsic
intrinsic_
(
_ftr_ptr
->
getCapture
()
->
getSensor
()
->
getIntrinsic
()
->
getState
())
{
{
// std::cout << "FactorPixelHp::Constructor\n";
// std::cout << "FactorPixelHp::Constructor\n";
// obtain some intrinsics from provided sensor
// obtain some intrinsics from provided sensor
...
...
This diff is collapsed.
Click to expand it.
include/vision/factor/factor_trifocal.h
+
3
−
3
View file @
9cd5e893
...
@@ -206,9 +206,9 @@ FactorTrifocal::FactorTrifocal(const FeatureBasePtr& _feature_1_ptr,
...
@@ -206,9 +206,9 @@ FactorTrifocal::FactorTrifocal(const FeatureBasePtr& _feature_1_ptr,
Matrix
<
double
,
3
,
2
>
J_e_u3
=
J_e_m3
*
J_m_u
;
Matrix
<
double
,
3
,
2
>
J_e_u3
=
J_e_m3
*
J_m_u
;
// Error covariances induced by each of the measurement covariance // canonical units
// Error covariances induced by each of the measurement covariance // canonical units
Matrix3d
Q1
=
J_e_u1
*
_feature_1_ptr
->
getMeasurementCovariance
()
*
J_e_u1
.
transpose
();
// FIXME: changed getFeaturePrev() by _feature_1_ptr
Matrix3d
Q1
=
J_e_u1
*
_feature_1_ptr
->
getMeasurementCovariance
()
*
J_e_u1
.
transpose
();
Matrix3d
Q2
=
J_e_u2
*
_feature_2_ptr
->
getMeasurementCovariance
()
*
J_e_u2
.
transpose
();
// FIXME: changed getFeatureOther() by _feature_2_ptr
Matrix3d
Q2
=
J_e_u2
*
_feature_2_ptr
->
getMeasurementCovariance
()
*
J_e_u2
.
transpose
();
Matrix3d
Q3
=
J_e_u3
*
_feature_own_ptr
->
getMeasurementCovariance
()
*
J_e_u3
.
transpose
();
// FIXME: changed getFeature() by _feature_own_ptr
Matrix3d
Q3
=
J_e_u3
*
_feature_own_ptr
->
getMeasurementCovariance
()
*
J_e_u3
.
transpose
();
// Total error covariance // canonical units
// Total error covariance // canonical units
Matrix3d
Q
=
Q1
+
Q2
+
Q3
;
Matrix3d
Q
=
Q1
+
Q2
+
Q3
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment