BBox-Label-Tool icon indicating copy to clipboard operation
BBox-Label-Tool copied to clipboard

Error Loading images, what I am doing wrong ?

Open thug1705 opened this issue 7 years ago • 1 comments

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.

screenshoterror

thug1705 avatar Mar 16 '18 10:03 thug1705

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

bexx1963 avatar Apr 10 '18 11:04 bexx1963