BBox-Label-Tool
BBox-Label-Tool copied to clipboard
Error Loading images, what I am doing wrong ?
Hi I am trying to load images I followed instructions but I still can't load images, I am forwarding screenshot if someone can tell me what I am doing wrong, I would appreciate.
Thanks.

You have to convert pictures from .jpg to .JPEG
First install imagemagick:
sudo apt-get install imagemagick
Try converting just one image at first:
convert image.jpg image.png
Now convert all:
mogrify -format png *.jpg
Delete all files with .jpg extension
find . -type f -iname *.jpg -delete