Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gnss
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
gnss
Commits
bc345d8b
Commit
bc345d8b
authored
6 years ago
by
Joaquim Casals Buñuel
Browse files
Options
Downloads
Patches
Plain Diff
Test no longer crashes, but it fails
parent
e3c8d133
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/processor/processor_gnss_single_diff.cpp
+2
-2
2 additions, 2 deletions
src/processor/processor_gnss_single_diff.cpp
with
2 additions
and
2 deletions
src/processor/processor_gnss_single_diff.cpp
+
2
−
2
View file @
bc345d8b
...
@@ -51,8 +51,8 @@ void ProcessorGnssSingleDiff::process(CaptureBasePtr _capture_ptr)
...
@@ -51,8 +51,8 @@ void ProcessorGnssSingleDiff::process(CaptureBasePtr _capture_ptr)
// EXTRACT AND ADD FEATURES
// EXTRACT AND ADD FEATURES
//WOLF_DEBUG("adding the feature...");
//WOLF_DEBUG("adding the feature...");
FeatureBasePtr
ftr_ptr
=
last_capture_ptr_
->
addFeature
(
std
::
make_shared
<
FeatureGnssSingleDiff
>
(
last_capture_ptr_
->
getData
(),
last_capture_ptr_
->
getDataCovariance
()));
//
FeatureBasePtr ftr_ptr = last_capture_ptr_->addFeature(std::make_shared<FeatureGnssSingleDiff>(last_capture_ptr_->getData(),last_capture_ptr_->getDataCovariance()));
FeatureBasePtr
ftr_ptr
=
FeatureBase
::
emplace
<
FeatureGnssSingleDiff
>
(
last_capture_ptr_
,
last_capture_ptr_
->
getData
(),
last_capture_ptr_
->
getDataCovariance
());
// ADD CONSTRAINT
// ADD CONSTRAINT
FactorBasePtr
fac_ptr
;
FactorBasePtr
fac_ptr
;
//WOLF_DEBUG("adding the factor...");
//WOLF_DEBUG("adding the factor...");
...
...
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