Skip to content

podgorskiy/anntoolkit

Repository files navigation

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

About

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

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published