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.
Questions tagged [labelimg]
44 questions
1
vote
0 answers
compile darknet as dll
im having some problems with google colab:
when i try to compile darknet with LIBSO=1, and #define TRACK_OPTFLOW i got this error message:
...
In file included from src/yolo_console_dll.cpp:23:0:
include/yolo_v2_class.hpp:233:10: fatal error:…
user13354476
1
vote
2 answers
pyrcc5: No such file or directory
I want to install labelImg for mac OS in python 3.7. here is the repo: https://github.com/tzutalin/labelImg
I have installed previous modules via 'pip3 install pyqt5 lxml' successfully. Cloned the repo, entered the folder 'labelImg', but only 'make…
user10229833
1
vote
0 answers
LabelImg imgSize array includes 0
(One of the images that wasn't working)
I'm using labelImg (https://github.com/tzutalin/labelImg) to annotate images of 2 classes. I have approximately 2000 images, everything works fine until image 681 and all images after, where I get this…

Mohammed Balfakeih
- 33
- 7
0
votes
1 answer
What is the best tool to augment DOTA like custom dataset?
My dataset is annotated using rotated bounding box annotation tool having (x1y1 x2y2 x3y3 x4y4 class category) is label format (same as DOTA).
My data directory contains:
images
train (txt labels)
val (txt labels)
test (txt labels)
I want to…

user181925
- 3
- 2
0
votes
1 answer
ImportError: DLL load failed while importing QtGui: The specified module could not be found
I get this error when I try to run labelimg on windows
Traceback (most recent call last):
File "C:\Users\okeon\AppData\Roaming\Python\Python39\site-packages\labelImg\labelImg.py", line 18, in
from PyQt5.QtGui import *
ImportError: DLL load failed…

Oke
- 113
- 9
0
votes
0 answers
labelImg using with m1 pro issue with pip install pip3 install pyqt5 lxml
I am currently trying to run labelImg on my mac m1pro. When trying to install qt5 with "pip3 install pyqt5 lxml" i get this error message:
`
Collecting PyQt5
Using cached PyQt5-5.15.7.tar.gz (3.2 MB)
Installing build dependencies ... done
Getting…

romanxaver
- 71
- 1
- 1
- 3
0
votes
0 answers
'pyqt5' is not recognized as an internal or external command, operable program or batch file
I have a question I try installing this library https://github.com/heartexlabs/labelImg however when I type pyrcc5 -o libs/resources.py resources.qrc it gives me an error "'pyqt5' is not recognized as an internal or external command, operable…

jason hartanto
- 1
- 1
0
votes
0 answers
I have an error while working with label Img package
error :-- python: symbol lookup error: /lib/x86_64-linux-gnu/libQt5XcbQpa.so.5: undefined symbol: _ZN22QWindowSystemInterface24setPlatformFiltersEventsEb, version Qt_5_PRIVATE_API
Environment details
OS ubuntu 20.04
Lang Python3.10.9
Env Jupyter…

Biren Mer
- 11
- 2
0
votes
0 answers
'pyrcc5' is not recognized as an internal or external command Anaconda
I'm currently trying to install LabelImg to work on a computer vision project to label photos, I am using Anaconda to download LabelImg and I am following the documentation on the GitHub page https://github.com/heartexlabs/labelImg#labelimg…

NJ_GMD
- 23
- 6
0
votes
1 answer
Which model should I use for object recognition on mobile devices?
I am working on a project where I need the app to recognize a special character, just one small graphic, from a photographed document. Something similar to the example from the picture. More specifically, the app would use this character to…

Slobodan M.
- 31
- 1
- 3
0
votes
1 answer
'pyrcc5' is not recognized as an internal or external command (Python PyQt5 & LabelImg)
Installed pyqt5 and lxml via pip for labelimg but receiving the error when trying to execute pyrcc5:
'pyrcc5' is not recognized as an internal or external command,
operable program or batch file.
Using anaconda therefore it has installed to…

yardforsale
- 11
- 3
0
votes
0 answers
How to set the dimensions for the bounding box?
I am working on a Sign Language-to-text converter. I am currently referring following repo for my project
https://github.com/nicknochnack/RealTimeObjectDetection
For the same, I want to create XML files for my images to train my ssd_model to detect…

Ninad Kulkarni
- 68
- 8
0
votes
0 answers
AssertionError occurs to file not found when executing train.py
I am trying to execute python train.py within Anaconda prompt but I am receiving numerous line text and an AssertionError: File not found: div2.yaml.
As you can see my div2.yaml file is based on the coco128 thats linked to my datasets photos and…

Marze lells
- 11
- 3
0
votes
0 answers
labelImg cannot run
I installed labelImg on windows 10 with pip install labelimg and tried using the Create RectBox tool, which caused it to crash:
Traceback (most recent call last):
File "C:\Users...", line 530, in paintEvent
p.drawLine(self.prev_point.x(), 0,…

Alex Yi
- 1
0
votes
1 answer
How to extract or get the image bounded by Detectron
I am working on creating bounding boxes upon images with my own created training dataset with the help of Detection, while I'm now stuck at the part of extracting the bounded image. I just want the image of the part inside the bounding box.
The…