Questions tagged [labelimg]

LabelImg is a graphical image annotation tool. It is written in Python and uses Qt for its graphical interface. Annotations are saved as XML files in PASCAL VOC format, the format used by ImageNet. More information can be found on its Github site.

44 questions
10
votes
3 answers

Install LabelImg Annotation tool in Windows

I am trying to install LabelImg in windows to make annotations of my images.I am following the steps from https://github.com/tzutalin/labelImg#windows .I have installed PyQt4 and lxml.But when trying run this command: pyrcc4 -o resources.py…
Kamran Ahmed
  • 179
  • 1
  • 2
  • 10
6
votes
12 answers

labelImg: 'pyrcc5' is not recognized as an internal or external command

I'm trying to install lalbelImg for The Tensorflow Object Detection API. Everything is going well until I try to run the command: pyrcc5 -o libs/resources.py resources.qrc It give me error: 'pyrcc5' is not recognized as an internal or external…
code lover
  • 151
  • 1
  • 2
  • 9
4
votes
8 answers

I can't install lableImg Annotation tool in M1 Mac

While installing LabelImg in M1 Mac using below command pip install pyqt5 lxml This is the error I got ERROR: pyqt5 from…
Snap Stor
  • 41
  • 1
  • 2
3
votes
1 answer

i can't label images using labeLImg

i am new in object detection using python tensorflow and i have folder contains images that i need to Label it so i download pyqt5 , lableImg and when i open labelImg and choose The directory of my image folder it work fine and open folder in…
3
votes
2 answers

in labelimg, reopening the app resets classes.txt

I have a folder containing 1000 photos. And I tagged 100 photos with labelimg. In three classes: "car", "motorcycle" and "truck". But every time I open the labelimg, the previous tags are deleted from "classes.txt" and there is only the new tag that…
Maryam Boneh
  • 59
  • 1
  • 6
3
votes
1 answer

Is it necessary to label every object of a class on an image?

I labeled a bunch of Images for training a Faster-RCNN network for object detection with one class. There are about hundrets or thousands of objects of this class on every Image. Do I have to label all of them? For now i labeled about 20 to 80…
3
votes
1 answer

Could not connect to any X display: Google Colab Run-time

I am working on a classification problem now and trying to do everything online, without having to access my local machine. So I have added my data to drive and mounted my drive on Colab. Now I want to annotate my data and have decided to use the…
2
votes
1 answer

how to convert coordination of labels for yolo when cropping image?

i've created over 1200 images with labels for yolo detection and the problem is every image size is 800x600 and all the objects with labels are in the middle of the image. so i wanna crop the rest of the part since objects are placed in the…
wookidookik123
  • 79
  • 2
  • 10
2
votes
0 answers

labeling images for object detection model: add black region?

When doing a labeling job for an object detection model, (e.g. YOLO). what options do I have when an object is partially shown in the frame? specifically, if I have half a person (let's say, the bottom half) should I tag it? or leave it be? Can I,…
Ardemion
  • 33
  • 1
  • 7
2
votes
0 answers

Generate .record files from xml from labelImg (pascal voc like format) in tensorflow 2

I am trying out Tensorflow Object Detection API with a custom dataset and currently hitting a wall with several tutorials at the same place of generation of .record files from xml files. For image labelling I have used labelImg set in Pascal VOC…
euh
  • 319
  • 2
  • 11
2
votes
0 answers

Python labelimg expected str, bytes or os.PathLike object, not NoneType

I was trying to install labelImg. But when I try to change pascalVoc to YOLO, labelImg crashes. The traceback is as follows:
Dogukan
  • 21
  • 1
2
votes
2 answers

Labelimg crashes when attempting to export YOLO training samples

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…
ihb
  • 292
  • 9
  • 27
1
vote
1 answer

When trying to create an image label inside of labelimg it boots me out to the cmd

I have been trying to continue my datasets for my yolov5 model today. But when I am inside labelimg and try to create a box around the target, the application closes and I left with this error message: It has been working perfectly fine for the…
1
vote
1 answer

How to implement labelImg function on the web browser

i am using labelImg tool for a graphical image annotation. But for our education site, we would like to add this function of a graphical image annotation like labelImg into our web service. https://github.com/tzutalin/labelImg So Can we make…
Ryan Lee
  • 11
  • 2
1
vote
2 answers

Using custom trained Yolov3 weights to label new images

I've recently trained a custom yolov3 model to recognize animals. The first dataset only had around 900 photos. I have access to 10Ks of photos, but labeling them all through labelImg is going to take ages. Is there a way to use the pre-trained…
OssenCoder
  • 156
  • 9
1
2 3