Giter Club home page Giter Club logo

visdrone2018-mot-toolkit's People

Contributors

visdrone avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

visdrone2018-mot-toolkit's Issues

eval task4a

@VisDrone When I eval task4a,and some error happened:

evaluating VisDrone2019 Task4 :: loading groundtruth
evaluating VisDrone2019 Task4 :: loading predictions
错误使用 evaluateTrackA (第 130 行)
Find multiple labels in a tracklet.

出错 evalMOT (第 31 行)
[ap, recall, precision] = evaluateTrackA(seqPath, resPath, gtPath, evalClassSet);

Could you help me ?

How many kinds of obj_class are there?

Hello

I am trying to find out how many different classes of objects are there under the obj_class annotation.

Which number represents which object?
is 0 human?

Error in running task 4b Matlab2021b

while running task 4b. I am getting following error:


Unrecognized function or variable 'clearMOTMex'. 
Error in CLEAR_MOT_HUN (line 50)
[mme, c, fp, m, g, d, alltracked, allfalsepos] = clearMOTMex(gtMat, resMat, threshold, world, VERBOSE);

Error in classEval (line 11)
        [metsCLEAR, ~, additionalInfo] = CLEAR_MOT_HUN(gtdata, resdata, threshold, world);

Error in evaluateTrackB (line 88)
    tendMets = classEval(gtsortdata, ressortdata, allMets, ind, evalClassSet, sequenceName);

Error in evalMOT (line 32)
     [tendallMets, allresult] = evaluateTrackB(seqPath, resPath, gtPath, evalClassSet);
 
>> 

I found a bug in evaluation: performance can be doubled by simply duplicating the result txt

For example, if the original mAP for Task4a is 35, after I duplicate the content of each video's txt file for 10 times, the mAP increases up to 65.


original txt:        after duplicated:
1,                            1,
2,                            2,
3,                            3,
                              1,
                              2,
                              3,
                              ...

The bug lies in Line 182 - Line 204 in evaluateTrackA.m.

...
num_matched = 0;
num_total = length(union(img_ids, gt_img_ids));
for j = 1:num_obj
        ...
        if(ov >= gt_thr(k))
            num_matched = num_matched + 1;
        end
    end
end
ov = num_matched / num_total;
...

If the result txt is duplicated 10 times, num_matched will also be increased by 10 times, while num_total won't get larger since num_total = length(union(img_ids, gt_img_ids)) is a set operation. Thus, ov becomes larger, which leads to the improvement of mAP.

In order to ensure the fairness of the challenge, an assertion should be added here to fix the bug.

Reliability of result

I am trying to evaluate some trackers on the VisDrone dataset.

I am using their result text files to run evalMOT.m on, with the runTrackerAllClass line commented off.
Example of outcome using YoloV5_DeepSORT on VisDrone2019-MOT-test-dev:
image

  1. Does the result seems correct?
  2. What is the difference between the 2 results ( I am guessing all 10 classes result on top and pedestrians only result below? )

run evalMOT.m

when I run evalMOT.m to eval on test-dev set, I get an error:
tracking the sequence 1/17...
错误使用 load
无法读取文件 'E:\VisDrone-MOT\VisDrone2019-MOT-test-dev\uav0000009_03358_v.txt'。没有此类文件或目录。

出错 runTrackerAllClass (第 12 行)
det = load(fullfile(detPath, [nameSeqs{idSeq} '.txt']));

出错 evalMOT (第 26 行)
runTrackerAllClass(isSeqDisplay, isNMS, detPath, resPath, seqPath, evalClassSet, threSet, nmsThre, trackerName);

Did any one knows this problem? Thank you.

Evaluation Results

Hi, my code settings are as shown in the figure. Do you know why all the evaluation results are 0 ?
image
image

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.