Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't reid on custom dataset #42

Open
tiRomani opened this issue Jan 18, 2022 · 0 comments
Open

Can't reid on custom dataset #42

tiRomani opened this issue Jan 18, 2022 · 0 comments

Comments

@tiRomani
Copy link

tiRomani commented Jan 18, 2022

Hi, I have created a dataset that consists of one single image repeated with a person on a field.
The dataset has the same structure used in mot datasets with det/det.txt, img1 and seqinfo.ini .
I have also run all steps required to include a custom dataset.

Finally I have created a script which loads configs, models, tracker and runs MPNTracker.track over the dataset.
It goes like this:

solver = MOTNeuralSolver(hparams = dict(config))
model, cnn_model = solver.load_model()
dataset = solver.test_dataset()

tracker = MPNTracker(dataset=dataset,
                     graph_model=model,
                     use_gt=False,
                     eval_params=config['eval_params'],
                     dataset_params=config['dataset_params'])
tracker.track('custom_dataset', output_path='output/results/results.txt')

Tracking seems to run correctly, but the output doesn't make sense.
There is one new id for the detection on each of the frames. Like it can't reid at all.

Does anybody has the slightest idea of why this could be happening?

Example

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant