I'm pretty new to Python and labeling data for deep learning. I have installed Labelimg program in order to label a custom dataset, but it keeps crashing when I create YOLO training samples. Each time I open the program and specify the image directory, I can browse through the images, but when I create my bounding boxes and try to click on the "next image" button, it crashes with an error message.
As a note, I followed this tutorial to install Labelimg.
Here is how I create the error:
- Open Anaconda Prompt
- Activate the previously-created labelimg environment in conda
conda activate labelimg
- Specify location of unzipped labelimg folder
cd D:\labelimg
- Open python script, followed by location of image directory, previously-created text file with the label name (weed), and previously-created text file with the name of the class in it (weed):
python labelimg.py D:\photo_directory D:\label.txt D\:classes.txt
The program then opens, displaying this:
Notice that I am trying to export samples as YOLO training samples. The name of the picture is "weed0". Whenever I create my samples and click the "Next Image" button, the program crashes with this error:
Traceback (most recent call last):
File "labelimg.py", line 1299, in openNextImg
self.saveFile()
File "labelimg.py", line 1339, in saveFile
self._saveFile(savedPath)
File "labelimg.py", line 1371, in _saveFile
if annotationFilePath and self.saveLabels(annotationFilePath):
File "labelimg.py", line 837, in saveLabels
self.lineColor.getRgb(), self.fillColor.getRgb())
File "D:\labelimg\libs\labelFile.py", line 89, in saveYoloFormat
writer.save(targetFile=filename, classList=classList)
File "D:\labelimg\libs\yolo_io.py", line 64, in save
out_file = codecs.open(targetFile, 'w', encoding=ENCODE_METHOD)
File "D:\anaconda3\envs\labelimg\lib\codecs.py", line 898, in open
file = builtins.open(filename, mode, buffering)
FileNotFoundError: [Errno 2] No such file or directory: 'D:\\weed0.txt'
What can I do to ensure that the program doesn't crash when exporting YOLO training samples? I have done everything but reinstall the program, which doesn't make sense to me because I just downloaded it.