Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 858 Bytes

README.md

File metadata and controls

36 lines (25 loc) · 858 Bytes

AnnToolKit - Image annotation toolkit

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

Getting started

Documentation - http://anntoolkit.rtfd.io/

1. Install

pip install anntoolkit

2. Hello world

Subclass from anntoolkit.App In init method load some test image.

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:

app = App()
app.run()

Result:

hellow_wrold ezgif-4-79386aae29cb