All Projects → recogito → Annotorious

recogito / Annotorious

Licence: bsd-3-clause
A JavaScript library for image annotation

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Annotorious

Obofoundry.github.io
Metadata and website for the Open Bio Ontologies Foundry Ontology Registry
Stars: ✭ 85 (-38.41%)
Mutual labels:  annotation
Recogito2
Semantic Annotation Without the Pointy Brackets
Stars: ✭ 110 (-20.29%)
Mutual labels:  annotation
Labelbox
Labelbox is the fastest way to annotate data to build and ship computer vision applications.
Stars: ✭ 1,588 (+1050.72%)
Mutual labels:  annotation
Doodle
A Simple Java MVC Framework。提供Bean容器、Ioc、Aop、MVC功能
Stars: ✭ 90 (-34.78%)
Mutual labels:  annotation
Pyconll
A minimal, pure Python library to interface with CoNLL-U format files.
Stars: ✭ 104 (-24.64%)
Mutual labels:  annotation
Autoannotationtool
A label tool aim to reduce semantic segmentation label time, rectangle and polygon annotation is supported
Stars: ✭ 113 (-18.12%)
Mutual labels:  annotation
Kirby Annotator
Kirby field for adding notes to images by pinning them to specific coordinates. Kirby 2 and 3.
Stars: ✭ 84 (-39.13%)
Mutual labels:  annotation
Augustus
Genome annotation with AUGUSTUS
Stars: ✭ 129 (-6.52%)
Mutual labels:  annotation
Nova
NOVA is a tool for annotating and analyzing behaviours in social interactions. It supports Annotators using Machine Learning already during the coding process. Further it features both, discrete labels and continuous scores and a visuzalization of streams recorded with the SSI Framework.
Stars: ✭ 110 (-20.29%)
Mutual labels:  annotation
Face landmark factory
These are a set of tools using OpenCV, Tensorflow and Keras, with which you can generate your own model of facial landmark detection and demonstrate the effect of newly-generated model easily.
Stars: ✭ 120 (-13.04%)
Mutual labels:  annotation
Tageditor
🏖TagEditor - Annotation tool for spaCy
Stars: ✭ 92 (-33.33%)
Mutual labels:  annotation
Rpc.py
A fast and powerful RPC framework based on ASGI/WSGI.
Stars: ✭ 98 (-28.99%)
Mutual labels:  annotation
Web Annotation
Web Annotation Working Group repository, see README for links to specs
Stars: ✭ 112 (-18.84%)
Mutual labels:  annotation
Lyra
[ARCHIVED] A library which saves and restores the state of Android components easily.
Stars: ✭ 87 (-36.96%)
Mutual labels:  annotation
Http Router
🎉 Release 2.0 is released! Very fast HTTP router for PHP 7.1+ (incl. PHP8 with attributes) based on PSR-7 and PSR-15 with support for annotations and OpenApi (Swagger)
Stars: ✭ 124 (-10.14%)
Mutual labels:  annotation
Check
Development environment for Meedan Check, a collaborative media annotation platform
Stars: ✭ 84 (-39.13%)
Mutual labels:  annotation
Googlemap
Google Map to use create path on map and play vehicle on path like Uber and Ola
Stars: ✭ 112 (-18.84%)
Mutual labels:  annotation
Jupiter
jupiter是一个aio web框架,基于aiohttp。支持(restful格式、扫描注解、依赖注入、jinja2模板引擎、ORM框架)等。
Stars: ✭ 140 (+1.45%)
Mutual labels:  annotation
Yolo label
GUI for marking bounded boxes of objects in images for training neural network Yolo v3 and v2 https://github.com/AlexeyAB/darknet, https://github.com/pjreddie/darknet
Stars: ✭ 128 (-7.25%)
Mutual labels:  annotation
Router
🍭灵活的组件化路由框架.
Stars: ✭ 1,502 (+988.41%)
Mutual labels:  annotation



A JavaScript image annotation library. Add drawing, commenting and labeling functionality to images in Web pages with just a few lines of code. This project is a modernized reboot of the outdated original Annotorious. See the project website for details and live demos.

Installing

If you use npm, npm install @recogito/annotorious and

import { Annotorious } from '@recogito/annotorious';

import '@recogito/annotorious/dist/annotorious.min.css';

const anno = new Annotorious({ image: 'hallstatt' }); // image element or ID

Otherwise download the latest release and include it in your web page.

<link rel="stylesheet" href="annotorious.min.css">
<script src="annotorious.min.js"></script>

Using

<body>
  <div id="content">
    <img id="hallstatt" src="640px-Hallstatt.jpg">
  </div>
  <script>
    (function() {
      var anno = Annotorious.init({
        image: 'hallstatt'
      });

      anno.loadAnnotations('annotations.w3c.json');
    })()
  </script>
  <script type="text/javascript" src="annotorious.min.js"></script>
</body>

Full documentation is on the project website. Questions? Feedack? Feature requests? Join the Annotorious chat on Gitter.

Join the chat at https://gitter.im/recogito/annotorious

License

BSD 3-Clause (= feel free to use this code in whatever way you wish. But keep the attribution/license file, and if this code breaks something, don't complain to us :-)

Who's Using Annotorious

NHS Wales Logo   MicroPasts Logo

Using Annotorious? Let us know!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].