You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bonus feature would be to separately track inliers corresponding to the change of the camera pose and possibly some other groups corresponding to moving objects.
Just doing a quick timing on the lk_track.py example from opencv. On computer i5 at 1.7GHz and 640x480 picture from the built in camera the tracking step takes around 4ms and the detect step around 11ms. Detecting new features to track is done on every 5th frame. Amortizing this we get 6ms per frame. FPS is a bit over 30.
lk_track.py from opencv samples shows how to track a set of point between images. Use that plus cv2.findEssentialMat() to recover relative pose between frames using cv2.recoverPose(). Somewhat like visual odomery tutorial .
The text was updated successfully, but these errors were encountered: