Metadata-Version: 2.1
Name: anntoolkit
Version: 0.0.6
Summary: anntoolkit
Home-page: https://github.com/podgorskiy/anntoolkit
Author: Stanislav Pidhorskyi
Author-email: stpidhorskyi@mix.wvu.edu
License: MIT
Keywords: imgui ui
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown

# AnnToolKit - Image annotation toolkit
## Cross-platform, dataset agnostic, "DIY" style image annotation framework

### Getting started

Documentation - [http://anntoolkit.rtfd.io/](http://anntoolkit.rtfd.io/)

#### 1. Install

`pip install anntoolkit`

#### 2. Hello world
Subclass from `anntoolkit.App`
In init method load some test image.

``` python
import anntoolkit

class App(anntoolkit.App):
    def __init__(self):
        super(App, self).__init__(title='Test')        
        im = imageio.imread('test_image.jpg')
        self.set_image(im)

```
Run app:

``` python
app = App()
app.run()
```

Result:

![hellow_wrold](https://user-images.githubusercontent.com/3229783/90511347-2c2c0f00-e111-11ea-91eb-a918f2f55288.png)
![ezgif-4-79386aae29cb](https://user-images.githubusercontent.com/3229783/90512523-21727980-e113-11ea-87b1-f79d76761f7a.gif)


