Skip to content
/ cvat Public
forked from cvat-ai/cvat

Powerful and efficient Computer Vision Annotation Tool (CVAT)

License

Notifications You must be signed in to change notification settings

jax79sg/cvat

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Computer Vision Annotation Tool (CVAT)

Build Status Codacy Badge Gitter chat Coverage Status

CVAT is free, online, interactive video and image annotation tool for computer vision. It is being used by our team to annotate million of objects with different properties. Many UI and UX decisions are based on feedbacks from professional data annotation team.

CVAT screenshot

DH Documentation

This is a fork of opencv/cvat. This fork is on parallel maintanence with the original master, with exception to use cases that's particular to our requirements. All documentation outside of this section belongs to the master repository.
A demo is available at https://jax79sg.hopto.org:8080.
Download of annotations in VOC format available in https://jax79sg.hopto.org:8080/downloadlist

Installation (Prebuilt) with Internet access

  1. Download docker-compose.internet.yml from https://raw.githubusercontent.com/jax79sg/cvat/develop/docker-compose.internet.yml
  2. Run following commands
docker-compose -f docker-compose.internet.yml up --force-recreate -d
docker-compose -f docker-compose.internet.yml exec cvat python3 manage.py makemigrations downloadlist
docker-compose -f docker-compose.internet.yml exec cvat python3 manage.py migrate downloadlist

## Create a super user
docker exec -it cvat bash -ic 'python3 ~/manage.py createsuperuser'
  1. Access https://youripaddress:8080 on your Chrome browser.

Installation (Prebuilt) without Internet

You will need to perform some steps on an internet connected machine before you transfer it to the standalone machine.

On the Internet machine

  1. Pull the pre-made images
docker pull quay.io/jax79sg/cvat
docker pull quay.io/jax79sg/redis
docker pull quay.io/jax79sg/postgres
  1. Tag the images to local version
docker tag quay.io/jax79sg/cvat cvat:dh
docker tag quay.io/jax79sg/redis redis:dh
docker tag quay.io/jax79sg/postgres postgres:dh
  1. Tar the images
docker save cvat:dh -o cvat.tar
docker save redis:dh -o redis.tar
docker save postgres:dh -o postgres.tar
  1. Download docker-compose.standalone.yml from https://raw.githubusercontent.com/jax79sg/cvat/develop/docker-compose.standalone.yml
  2. Copy the following files into a portable HDD and transfer them to the standalone machine.
cvat.tar
redis.tar
postgres.tar
docker-compose.standalone.yml

On standalone machine

  1. Copy the 4 files in step 5 into a empty folder.
  2. Load the images into Docker, then check if they are loaded
docker load -i postgres.tar
docker load -i redis.tar
docker load -i cvat.tar

docker images
  1. Install and run CVAT
docker-compose -f docker-compose.standalone.yml up --force-recreate -d
docker-compose -f docker-compose.standalone.yml exec cvat python3 manage.py makemigrations downloadlist
docker-compose -f docker-compose.standalone.yml exec cvat python3 manage.py migrate downloadlist

## Create a super user
docker exec -it cvat bash -ic 'python3 ~/manage.py createsuperuser'
  1. Access https://localhost:8080 on your Chrome browser.

Installation re-build

Please refer to OEM documentation below.

Documentation

Screencasts

Supported annotation formats

Format selection is possible after clicking on the Upload annotation / Dump annotation button.

Annotation format Dumper Loader
CVAT XML v1.1 for images X X
CVAT XML v1.1 for a video X X
Pascal VOC X X
YOLO X X

Links

Online Demo

Onepanel has added CVAT as an environment into their platform and a running demo of CVAT can be accessed at CVAT Public Demo.

After you click the link above:

  • Click on "GO TO WORKSPACE" and the CVAT environment will load up
  • The environment is backed by a K80 GPU

If you have any questions, please contact Onepanel directly at [email protected]. If you are in the Onepanel application, you can also use the chat icon in the bottom right corner.

LICENSE

Code released under the MIT License.

Questions

CVAT usage related questions or unclear concepts can be posted in our Gitter chat for quick replies from contributors and other users.

However, if you have a feature request or a bug report that can reproduced, feel free to open an issue (with steps to reproduce the bug if it's a bug report).

If you are not sure or just want to browse other users common questions, Gitter chat is the way to go.

About

Powerful and efficient Computer Vision Annotation Tool (CVAT)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 57.2%
  • Python 34.5%
  • TypeScript 3.2%
  • HTML 3.1%
  • CSS 1.1%
  • Shell 0.5%
  • Dockerfile 0.4%