Skip to main content

Converters from Labelbox exports to other common foramts

Project description

Labelbox Scripts

Usage

Setup

Tested against Python 3.6.4. To install to site-packages for use:

pip install LBExporters

Labelbox JSON to COCO

Convert a Labelbox JSON export file to COCO format.

# import labelbox2coco library
import labelbox2coco as lb2co

# set labeled_data to the file path of the Labelbox JSON export
labeled_data = 'test-fixtures/labelbox_1.json'

# set coco_output to the file name you want the COCO data to be written to
coco_output = 'lb2co_1.json'

# call the Labelbox to COCO conversion
lb2co.from_json(labeled_data=labeled_data, coco_output=coco_output)

Labelbox JSON to Pascal VOC

Convert a Labelbox JSON export file to Pascal VOC format.

# import labelbox2pascal library
import labelbox2pascal as lb2pa

# set labeled_data to the file path of the Labelbox JSON export
labeled_data = 'test-fixtures/labelbox_1.json'

# set ann_output_dir to the file path of the directory to write Pascal VOC
# annotation files. The directory must exist.
ann_output_dir = './Annotations'

# set images_output_dir to the file path of the directory to write images.
# The directory must exist.
images_output_dir = './Images'

# call the Labelbox to Pascal conversion
# NOTE: make sure to specify the correct label_format based on the export
#  format chosen on Labelbox; 'WKT' or 'XY'.
lb2pa.from_json(labeled_data=labeled_data, ann_output_dir=ann_output_dir,
                images_output_dir=images_output_dir, label_format='WKT')

Development

pipenv is used to manage virtualenvs and dependencies.

To get set up:

pipenv install --dev -e '.[dev]'

To run tests:

pipenv run pytest

To generate a requirements.txt for backwards compatibility:

pipenv lock -r --dev

Releasing

pipenv run python setup.py sdist bdist_wheel
twine upload --repository-url 'https://test.pypi.org/legacy/' 'dist/*' # stage in test pypi
twine upload 'dist/*'

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

LBExporters-0.1.2.dev1.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

LBExporters-0.1.2.dev1-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file LBExporters-0.1.2.dev1.tar.gz.

File metadata

  • Download URL: LBExporters-0.1.2.dev1.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for LBExporters-0.1.2.dev1.tar.gz
Algorithm Hash digest
SHA256 7a05fac8b387b2efdb813c165cc5e6d8359f8cdaf3ef234d1e87688630b4ec7e
MD5 0b3bad0e9e4a209084b084b0842c0f5a
BLAKE2b-256 a3bcc1da4ad755ae51eed6c2a8585e8abba8c58ee653d9ffa03487203ef0dbaf

See more details on using hashes here.

File details

Details for the file LBExporters-0.1.2.dev1-py3-none-any.whl.

File metadata

  • Download URL: LBExporters-0.1.2.dev1-py3-none-any.whl
  • Upload date:
  • Size: 6.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for LBExporters-0.1.2.dev1-py3-none-any.whl
Algorithm Hash digest
SHA256 efb552515e619794648012cdb75811c92f5e7b871b7b06a3e40886edb90e6b38
MD5 73e03c2816c5827fb76e5c33702c71c6
BLAKE2b-256 b861d745cf2f31a61384407ade3369b80bcfa31cfac31c9bebea92459b0ee70b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page