BMW-InnovationLab / BMW-Labeltool-Lite

This repository provides you with an easy-to-use labeling tool for State-of-the-art Deep Learning training purposes. It supports Auto-Labeling.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Random image order

Aestyo opened this issue · comments

commented

Even if I name the images correctly in my dataset (IMG_01.jpg, IMG_02.jpg, IMG_03.jpg etc...) LabelTool will re-number them completely randomly, for no visible reason. (Image 194 becoming n°1)

I've had a quick look at the code and I don't understand why this is happening, I've seen that with an image 003.jpg and 003.png it allows you to have different names but I don't think it's related as I never have the same name twice.

The problem is that the images are sent in batches, where the same thing has to be labeled on each one, so it's very time-consuming to check the reference to be labeled, whereas if they were in order, you'd know that the first 20 have such and such an object, the next 20 such and such an object and so on...

Is it possible to correct this problem? Even manually.
Thanks in advance

Hello @Aestyo

Currently, the file names are parsed by system.io library and not sorted in any form.
Your mentioned comment will be taken into consideration for any new release.