Manage data for structure-from-motion, visual odometry, and visual SLAM
The imageviewset
object manages view attributes and pairwise
connections between views of data used in structure-from-motion, visual odometry, and
simultaneous localization and mapping (SLAM) data. View attributes can be feature descriptors,
feature points, or absolute camera poses. Pairwise connections between views can be point
matches, relative camera poses, or an information matrix. You can also use this object to find
point tracks used by triangulateMultiview
and bundleAdjustment
functions.
returns an imageviewset
object. You can add views and connections using the vSet
= imageviewset()addView
and
addConnection
object functions.
addView | Add views to view set |
updateView | Update view in view set |
deleteView | Delete view from view set |
hasView | Check if view is in view set |
addConnection | Add connection between views in view set |
updateConnection | Update connection between views in a view set |
deleteConnection | Delete a connection between views in view set |
hasConnection | Check if connection between two views is in view set |
connectedViews | Return connected views |
poses | Absolute poses associated with views in view set |
createPoseGraph | Create pose graph |
findTracks | Find matched points across multiple views |
optimizePoses | Optimize absolute poses using relative pose constraints |
plot | Plot view set views and connections |