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
- Host: GitHub
- URL: https://github.com/podgorskiy/anntoolkit
- Owner: podgorskiy
- Created: 2020-04-01T09:18:53.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-25T02:24:52.000Z (over 1 year ago)
- Last Synced: 2025-12-22T05:38:18.603Z (4 months ago)
- Topics: annotation, annotation-tool, cross-platform, deep-learning, framework, opengl, python, ui
- Language: C++
- Homepage:
- Size: 6.82 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:

