GithubHelp home page GithubHelp logo

Comments (3)

xinshuoweng avatar xinshuoweng commented on July 19, 2024

Hey, that is a good point! Actually, this is different from what I tried before. When I do matching for all categories together I get worse performance. This is because different object categories have different sizes, motion dynamics, so need to use a different set of matching threshold/metrics to achieve optimal performance.

But, to answer your question, you can simply merge all data into a single folder and then do matching altogether. But you should not assign the type of all data to 1 based on our current evaluation code, which only runs evaluation per category (matching with GT objects having the same category) so the category data for each tracklet is needed. This is why you get bad performance after running an evaluation.

from ab3dmot.

yanshuaibupt avatar yanshuaibupt commented on July 19, 2024

I did the evaluation on all kitti training data, and the result is: car: sAMOTA=0.93, pedestrian: sAMOTA=0.74, all: mean MOTA=0.9108 (using motmetrics evaluation on all 21 trainset). I consider that different sizes of objects do not affect the 3D IOU value, because they are in the same 3D coordinate! A person and a car can never overlap theoretically.

from ab3dmot.

xinshuoweng avatar xinshuoweng commented on July 19, 2024

From these numbers, it seems worse than separating evaluation as well, especially for the pedestrian. But I am not sure what evaluation criteria you are using and also the evaluation is done on all 21 rather than only the validation sequence so the results may vary. To be clear, my original point is not that we will get different 3D IoU values when tracking all categories. Instead, the point was that the optimal matching threshold for different categories might be different, which can be found below for example:

elif cfg.det_name == 'pointrcnn': # tuned for PointRCNN detections
if cat == 'Car': algm, metric, thres, min_hits, max_age = 'hungar', 'giou_3d', -0.2, 3, 2
elif cat == 'Pedestrian': algm, metric, thres, min_hits, max_age = 'greedy', 'giou_3d', -0.4, 1, 4
elif cat == 'Cyclist': algm, metric, thres, min_hits, max_age = 'hungar', 'dist_3d', 2, 3, 4
else: assert False, 'error'

from ab3dmot.

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.