Object Tracking - first tips
For the purpose of tracking the board that will be used for this project, I propose to use Visual Servoing Platform (ViSP). This means that the node /object_tracker (see this) will be mainly composed by ViSP modules and classes.
ViSP has a wide range of modules with different purposes.
Since the object of interest for the IKEA use case is a standard board, I chose to use the VisP Markerless 3D Model-Based Tracker module. This 3D model-based tracker allows simultaneously the tracking of a markerless object using the knowledge of its CAD model while providing its 3D localization (i.e., the object pose expressed in the camera frame) when a calibrated camera is used. It is recommended that the considered objects should be modeled by lines, circles or cylinders, as it is this considered board.
You can see more documentation about this module here and here.
For using this ViSP module, the following files are required:
- camera_config_file.xml
- object_3d_model.wrl
- tracking_initialization.init
- vpMbEdgeTracker: uses moving edges. useful for texture less objects
- vpMbKltTracker: uses KLT keypoints detected on each visible face. useful for textured objects with edges that can be hidden
- vpMbEdgeKltTracker: uses both moving edges and KLT keypoints. useful for textured objects with visible edges.
- to track an object observed by a single, a stereo camera or more cameras, a RGB-D camera
- to consider moving-edges, keypoints or depth as visual features or a combination of these visual features
Comments
Post a Comment