Finding distance travelled by robot using Optical Flow

前端 未结 4 681
臣服心动
臣服心动 2021-02-11 09:50

I\'m working on a project right now in which we are developing an autonomous robot. I have to basically find out the distance travelled by the robot between any 2 intervals. I\'

相关标签:
4条回答
  • 2021-02-11 10:31

    I hope you do end up accepting answers you received in the past. Anyway, I had posted the solution to this problem on SO (in OpenCV) a while back, so here it is:

    How can I determine distance from an object in a video?

    0 讨论(0)
  • 2021-02-11 10:31

    have you considered doing odometry? You can use encoders as well as accelerometers to calculate distance. Is way more cheaper.

    0 讨论(0)
  • 2021-02-11 10:52

    The answer offered by Jacob is the right path to pursue, but you are likely to find that the resulting distance-traveled information is fairly noisy. You may want to consider using Kalman filters to improve your localization estimates over time.

    There is a very large body of literature on Kalman filters, but I've listed one relevant paper below.

    Larry H. Matthies, Richard Szeliski, and Takeo Kanade (1989). "Kalman Filter-based Algorithms for Estimating Depth from Image Sequences ", International Journal of Computer Vision, Vol 3, No. 3, September, pp 209–236.

    0 讨论(0)
  • 2021-02-11 10:56

    What about finding distance with help of no of rotation a wheel rotated in particular distance.

    Distance=no of rotation* circumference of wheel
    
    0 讨论(0)
提交回复
热议问题