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
0
votes
2 answers

Failure run labelImg on Windows

labelImg command gives me the following error on my installation and I am unable to figure out a fix for the problem. OS: Windows PyQt version: PyQt5 Python version: 3.7 Traceback (most recent call last): File "labelImg.py", line 1649, in…
Libra
  • 3
  • 1
  • 2
0
votes
1 answer

what's dataset type in tensorflow object-detection api?

I am trying to do my own object detection using my own dataset. I started my first machine learning program from google tensorflow object detection api, the link is here:eager_few_shot_od_training_tf2_colab.ipynb In the colab tutorial, the author…
0
votes
1 answer

YOLO: How to label small objects?

In the given image, orientation of the bags is not uniform, so difficult to label the sacks. How to label this kind of image in .txt(YOLO) format? What if I have multiple objects next to each other like in the following picture:
0
votes
1 answer

how to extract text using opencv and pytesseract python?

I am using labelImg to draw a rectangle on the rows of image. Which gives me the xml file . With the help of this xml how to extract that text from the image table . To extract the text I have used the horizontal and vertical ine detection but do…
0
votes
1 answer

How should I box multiple same objects in the same image

I am using labelImg to create .xml files for training images. While training photos, I've come across a photo containing more than one of the same objects in the same photo. For example, the photo below contains tens of swimmers in the same photo.…
0
votes
1 answer

Do I need to annotate all pictures in the image?

I've started annotating using LabelImg tool and drawing boxes but I have too many pictures in the images (like lots of grapes in the image). For better trained model, is it required to box all pictures or is it okay to leave some? I am trying to…
RedFox
  • 1,158
  • 2
  • 15
  • 28
0
votes
2 answers

How can I access the elements separated by comma in xml tags?

I need to store the elements separated by comma in xml tags For example, these x and y coordinates: 558.000000,790.000000 530.000000,829.000000 567.000000,855.000000
0
votes
1 answer

Error retrieving training data Asset is not found on Watson studio

What might be the reason from the above error on Watson Studio(Visual Recognition Custom Model). Anytime I am labelling my images for training a custom model on the watson studio, the labelling stops at a point and this results to a blank page. How…
chuky pedro
  • 756
  • 1
  • 8
  • 26
0
votes
1 answer

about bounded boxes of objects

i'm trying to compose a dataset for the detection of soccer players, ball etc.. in a soccer game, i'm using alexeyAB Darknet framework, So in the labeling phase in each image there are at least 8 players a ball and other stuff, at some point it is…
user13354476
0
votes
1 answer

AssertionError: labels.txt and cfg/yolov2.cfg indicate inconsistent class numbers

enter image description here I had already modify label.txt & tiny-yolo.cfg but it still show up AssertionError: labels.txt and cfg/yolov2.cfg indicate inconsistent class numbers
莊智宇
  • 1
  • 2
-1
votes
1 answer

Reading labelimg (bounding box) files into pandas dataframe

Hey all couldn't find a good answer to this but I made a little method that worked for me. hope it helps if anyone else is looking. Its a bit hacky but will serve.
-1
votes
1 answer

Create custom dataset by labelimg

I've done labels on my dataset. My dataset has 5 classes. namely riders, helmets, without helmets, license plates and rearview mirrors. the problem is why every time I open labeling or there is an error image that cannot be accessed, the dataset…
-1
votes
2 answers

Remove element from xml using xml tree library in python

I am working on a project where I have annotated images of certain leaves and saved them in xml format for identifying pests on the leaf using object detection. But since I am facing some ambiguity in some objects because some of the pests look…
TjR
  • 7
  • 2
-1
votes
1 answer

Make YOLO or PascalVOC from already cropped images

I have a ready-made dataset of images, where the object for recognition is already cut off along the boundaries of this object and there is no need to select it with a rectangular marker in any markup program (eg. LabelImg). Surely there is a…
1 2
3