-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/blob_connection_string
- Loading branch information
Showing
89 changed files
with
2,351 additions
and
374 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,67 @@ | ||
# Command-line client for CVAT | ||
|
||
A simple command line interface for working with CVAT tasks. At the moment it | ||
implements a basic feature set but may serve as the starting point for a more | ||
comprehensive CVAT administration tool in the future. | ||
|
||
Overview of functionality: | ||
|
||
- Create a new task (supports name, bug tracker, project, labels JSON, local/share/remote files) | ||
- Delete tasks (supports deleting a list of task IDs) | ||
- List all tasks (supports basic CSV or JSON output) | ||
- Download JPEG frames (supports a list of frame IDs) | ||
- Dump annotations (supports all formats via format string) | ||
- Upload annotations for a task in the specified format (e.g. 'YOLO ZIP 1.0') | ||
- Export and download a whole task | ||
- Import a task | ||
|
||
## Installation | ||
|
||
`pip install cvat-cli/` | ||
`pip install cvat-cli` | ||
|
||
## Usage | ||
|
||
```bash | ||
$ cvat-cli --help | ||
|
||
usage: cvat-cli [-h] [--version] [--auth USER:[PASS]] | ||
[--server-host SERVER_HOST] [--server-port SERVER_PORT] [--debug] | ||
{create,delete,ls,frames,dump,upload,export,import} ... | ||
|
||
Perform common operations related to CVAT tasks. | ||
|
||
positional arguments: | ||
{create,delete,ls,frames,dump,upload,export,import} | ||
|
||
optional arguments: | ||
-h, --help show this help message and exit | ||
--version show program's version number and exit | ||
--auth USER:[PASS] defaults to the current user and supports the PASS | ||
environment variable or password prompt | ||
(default: current user) | ||
--server-host SERVER_HOST | ||
host (default: localhost) | ||
--server-port SERVER_PORT | ||
port (default: 8080) | ||
--debug show debug output | ||
``` | ||
## Examples | ||
Create a task with local images: | ||
```bash | ||
cvat-cli --auth user create | ||
--labels '[{"name": "car"}, {"name": "person"}]' | ||
"test_task" | ||
"local" | ||
"image1.jpg" "image2.jpg" | ||
``` | ||
List tasks on a custom server with auth: | ||
```bash | ||
cvat-cli --auth admin:password \ | ||
--server-host cvat.my.server.com --server-port 30123 \ | ||
ls | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
cvat-sdk==2.0 | ||
cvat-sdk~=2.1.0 | ||
Pillow>=6.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
VERSION = "0.2-alpha" | ||
VERSION = "2.1.0.post1" |
Oops, something went wrong.