An open API service indexing awesome lists of open source software.

https://github.com/podgorskiy/anntoolkit

Image annotation toolkit. Cross-platform, dataset agnostic, "DIY" style image annotation framework
https://github.com/podgorskiy/anntoolkit

annotation annotation-tool cross-platform deep-learning framework opengl python ui

Last synced: 3 months ago
JSON representation

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

Awesome Lists containing this project

README

          

# 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)