mono-vo
mono-vo copied to clipboard
An OpenCV based implementation of Monocular Visual Odometry
I am running the same code but for different dataset which include images taken from my stereo camera . I don't know how to make poses file and pcalib.txt for...
Hi, I used your same logic in my python code in order to compute relative camera position from pair of images, I am getting about 2-3 degrees of error. Can...
I don't understand this because prevPts and currPts are not used anywhere ! ``` Mat prevPts(2,prevFeatures.size(), CV_64F), currPts(2,currFeatures.size(), CV_64F); for(int i=0;i
Hi, Please, could you explain how do you get the performance graph ? how it is possible to replay it ?
Hi, could you please explain this part of the code? if((scale>0.1) && (t.at(2) > t.at(0)) && (t.at(2) > t.at(1))) { t_f = t_f + scale*(R_f*t); R_f = R*R_f; } else...
Dear Avi Singh, Thanks a lot for this code, it'a a great help for monocular odometry. Could you indicate precisely which KITTY dataset do you use in your example ?...
Hello! @avisingh599 How can I use my own dataset to build odometry? I am especially interested in how I can calculate the values from 00.txt for my dataset, and also...
Hello I have solved some questions when i run the code with grayscale image in the 00 sequence,but i have a new error as follow,it occurred while reading the 455th...
Have you tried to optimize the past frames through the connection of mappoints? I think that Bundle Adjustment might be a good choice to the scale drift problem. The error...