Skip to content
Snippets Groups Projects
Commit 25d737d7 authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

doc

parent 6b70e3c7
No related branches found
No related tags found
2 merge requests!36After cmake and const refactor,!28Resolve "Building a new visual odometry system"
...@@ -118,9 +118,15 @@ namespace wolf{ ...@@ -118,9 +118,15 @@ namespace wolf{
* obs.process(); // process observation * obs.process(); // process observation
* *
* // Now we go to initialization * // Now we go to initialization
* grid.pickRoi(roi); // roi is now region of interest * num_new_detections = 0;
* if (detectFeature(roi)) // detect inside ROI * while(num_new_detections < max_detections)
* initLandmark(); // initialize only if successful detection * grid.pickRoi(roi); // roi is now region of interest
* if (detectFeature(roi)) // detect inside ROI
* initLandmark(); // initialize only if successful detection
* num_new_detections++;
* else
* blockCell(roi)
*
* \endcode * \endcode
* *
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment