Simple tool to manually label images in disctinct categories.
Project description
Simplabel
Graphical tool to manually label images in distinct categories to build training datasets. Simply pass a list of categories, a directory containing images and start labelling. Supports multiple users, reconciliation and keyboard bindings to label even faster!
Installation
Install with pip
Simplabel is on PyPI so it can be installed with pip
pip install simplabel
Install from source
Clone the repository to your computer
git clone https://github.com/hlgirard/Simplabel.git
and install with pip
cd Simplabel
pip install .
Usage
Quick start
Simplabel can be started from the command line without any argument:
simplabel
You will be prompted to select a directory containing images to label. Add labels with the '+' button and start labeling. Number keys correspond to labels and can be used instead.
The target directory and/or labels can also be passed directly from the command line:
simplabel --labels dog cat bird --directory path/to/image/directory
After the first use, labels are stored in labels.pkl
and the --labels
argument is ignored.
Command line arguments
-d, --directory <PATH/TO/DIRECTORY>
sets the directory to search for images and save labels to. Defaults to the current working directory.-l, --labels <label1 label2 label3 ...>
sets the categories for the labelling task. Only passed on the first use in a given directory.-u, --user <USERNAME>
sets the username. Defaults to the OS login name if none is passed.-r, --redundant
does not display other labelers selections for independent labelling. Reconciliation and Make Master are unavailable in this mode.-v, --verbose
increases the verbosity level.--remove-label <LABEL>
tries to safely remove a label from the list saved inlabels.pkl
(must also pass-d
)--reset-lock
overrides the lock preventing the same username from being used multiple times simultaneously.--delete-all
removes all files created by simplabel in the directory (must also pass-d
)
Multiuser
The app relies on the filesystem to save each user's selection and display other user's selections. It works best if the working directory is on a shared drive or in a synced folder (Dropbox, Onedrive...). The Reconcile workflow allows any user to see and resolve conflicts. The Make Master option can be used to create and save a master dictionary - labeled_master.pkl
- containing all labeled images (after reconciliation).
Import saved labels
The app saves a labeled_<username>.pkl
file that contains a pickeled dictionary {image_name: label}. To import the dictionary, use the following sample code:
import pickle
with open("labeled_user1.pkl","rb") as f:
label_dict = pickle.load(f)
Advanced usage
Utilities
Once you are done labelling, use the flow_to_directory tool to copy images to distinct directories by label
flow_to_directory --input-directory data/labeled --output-directory data/sorted
Python object
The Tkinter app can also be started from a python environment
from simplabel import ImageClassifier
import tkinter as tk
root = tk.Tk()
directory = "data/raw"
categories = ['dog', 'cat', 'bird']
MyApp = ImageClassifier(root, directory, categories)
tk.mainloop()
License
This project is licensed under the GPLv3 License - see the LICENSE.md file for details.
Acknowledgements
Testing of tkinter GUI is based on ivan_pozdeev's answer at Stackoverflow:
https://stackoverflow.com/questions/4083796/how-do-i-run-unittest-on-a-tkinter-app
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file simplabel-0.1.5.tar.gz
.
File metadata
- Download URL: simplabel-0.1.5.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0bf6d634ca7bc6dd774bba910e739bbcc3cc43b3d28226a6c83e53f11648e3c |
|
MD5 | 4bf6c6d7babcf56e23a5914e404fc960 |
|
BLAKE2b-256 | 244ebfabd81bb5fe391f4506dd71e5b7cefd988e7b74d8aee675d3b013a3e3ca |
File details
Details for the file simplabel-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: simplabel-0.1.5-py3-none-any.whl
- Upload date:
- Size: 29.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd580e29267420c5da55c47ea8d55aedd442030eb8b5ca6ab9f29387f222970f |
|
MD5 | 4ef6ab38f9a727011f4d96b0f2f4df04 |
|
BLAKE2b-256 | d95cdd5ad125b33257d56d71415e22e3f67eafef646397b875e1880ea71d825c |