LabLecture8 Inertial Odometery Using AR-Drone
LabLecture8 Inertial Odometery Using AR-Drone
AR Drone using
Structure from Motion
EE565: Mobile Robotics
Structure
from Motion
SfM Algorithm
Use case:
left_points.push_back( Point2f( x, y ) );
right_points.push_back( Point2f( x + flow.x, y + flow.y ) );
}
}
/* Triangulate the points to find the 3D homogenous points in the world space
Note that each column of the 'out' matrix corresponds to the 3d homogenous point
*/
Mat out;
triangulatePoints( P1, P2, left_points, right_points, out );