Giter Club home page Giter Club logo

Comments (5)

kaiyi98 avatar kaiyi98 commented on June 15, 2024

And then,I test oxford-v1.0 dataset using your oxford-v1.0_pretrained_l5_w3 model and get the reacall@1=0.7424 recall@5=0.8775 racall@20=0.9632. But the results in paper Table I are SeqNet(S5) recall@1/5/20=0.62/0.76/0.88.
I don't konw why.
Thank you!

from seqnet.

oravus avatar oravus commented on June 15, 2024

Hi @kaiyi98,

Hi! Thanks for your work! I have some doubts about the nordland image descriptors.

  1. The nordland image descriptors are from netvlad. Whether the netvlad model was trained in the nordland?

The provided single image descriptors are not trained on Nordland but Pittsburgh (30K). Please see this and this to train the model.

  1. Which one is a fixed distance sample between oxford-pnv and oxford-v1.0

oxford-v1.0 has the fixed distance sampling. oxford-pnv refers to the data split as per the PointNetVLAD paper.

Hope that helps.

from seqnet.

oravus avatar oravus commented on June 15, 2024

And then,I test oxford-v1.0 dataset using your oxford-v1.0_pretrained_l5_w3 model and get the reacall@1=0.7424 recall@5=0.8775 racall@20=0.9632. But the results in paper Table I are SeqNet(S5) recall@1/5/20=0.62/0.76/0.88. I don't konw why. Thank you!

Both the results are valid. The difference is in the underlying trained model used for the purpose. In the paper, we mainly reported results by testing with models trained on a different city. So, in Table 1 there, Oxford results correspond to a model trained on Brisbane data and vice versa.

The results you obtained are expected to be better for Oxford as the model is trained on Oxford.

Hope that helps.

from seqnet.

kaiyi98 avatar kaiyi98 commented on June 15, 2024

And then,I test oxford-v1.0 dataset using your oxford-v1.0_pretrained_l5_w3 model and get the reacall@1=0.7424 recall@5=0.8775 racall@20=0.9632. But the results in paper Table I are SeqNet(S5) recall@1/5/20=0.62/0.76/0.88. I don't konw why. Thank you!

Both the results are valid. The difference is in the underlying trained model used for the purpose. In the paper, we mainly reported results by testing with models trained on a different city. So, in Table 1 there, Oxford results correspond to a model trained on Brisbane data and vice versa.

The results you obtained are expected to be better for Oxford as the model is trained on Oxford.

Hope that helps.

Thank you! Can you tell me how to align the gps timestamps and the stereo.timestamps for Oxford RobotCar.

from seqnet.

oravus avatar oravus commented on June 15, 2024

You can do it as below:

import numpy as np
from scipy.spatial.distance import cdist

def getClosestPoseTsIndsPerImgTs(poseTs,imgTs,memEff=True):
    if memEff:
        matchInds = np.array([np.argmin(abs(poseTs-ts)) for ts in imgTs])
    else:
        diffMat = cdist(poseTs.reshape([-1,1]),imgTs.reshape([-1,1]))
        matchInds = np.argmin(diffMat,axis=0)
    return matchInds

closeInds = getClosestPoseTsIndsPerImgTs(insTS,imgTS,memEff=True)
imgPoses = insNE[closeInds,:]

from seqnet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.