Welcome new user! You can search existing questions and answers without registering, but please register to post new questions and receive answers. Note that due to large amounts of spam attempts, your first three posts will be manually moderated, so please be patient.
Because of un-manageable amounts of spam despite our use of CAPTCHAs, email authorization, and other tools, we have discontinued this forum (see the 700k+ registered users with validated email addresses at right?). Please email us any questions or post bug reports and feature requests on GitHub at https://github.com/jevois -- The content below remains available for future reference.

orb slam with jevois

0 votes
Hi,

I am using jevois with my Beaglebone blue and done some stuff like object tracking and aruco detection. Its great.

Now i want to use jevois for 3D map generation and localization such as Orb-Slam. Can you please guide me the approach?

My doubt is-

As jevois is capable to provide the Surf features and coordinate infomation, is it necessary to use another computer such as raspberry pi with jevois for complete orb-slam? or it is possible to have orb-slam fully working on jevois itself as a module only?

Please tell me all the alternative possibilities for orbslam to get done with jevois.

Thanks.
asked Dec 25, 2017 in Programmer Questions by sharmarahul98 (320 points)

1 Answer

0 votes
The easiest is to compute your SURF keypoints using OpenCV, then send the keypoints and descriptors in text format using sendSerial(). As long as you send them through USB-over-serial, you will get plenty of bandwidth (480 Mbps/s) and the text format, though not very compact, should be ok.

Or, indeed, you could try to implement the whole ORB SLAM on JeVois. Don't hesitate if you have questions about this as you proceed.
answered Dec 27, 2017 by JeVois (46,580 points)
Hi, Can you please guide me how to build orbslam for jevois? can i directly build that? i have tested orbslam2 on jetson tx2.
...