All Projects → recogito → annotorious-openseadragon

recogito / annotorious-openseadragon

Licence: BSD-3-Clause license
An OpenSeadragon plugin for annotating high-res zoomable images

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to annotorious-openseadragon

Awesome Data Labeling
A curated list of awesome data labeling tools
Stars: ✭ 1,120 (+1104.3%)
Mutual labels:  image-annotation, annotation
image-sorter2
One-click image sorting/labelling script
Stars: ✭ 65 (-30.11%)
Mutual labels:  image-annotation, annotation
Labelbox
Labelbox is the fastest way to annotate data to build and ship computer vision applications.
Stars: ✭ 1,588 (+1607.53%)
Mutual labels:  image-annotation, annotation
Cvat
Powerful and efficient Computer Vision Annotation Tool (CVAT)
Stars: ✭ 6,557 (+6950.54%)
Mutual labels:  image-annotation, annotation
Autoannotationtool
A label tool aim to reduce semantic segmentation label time, rectangle and polygon annotation is supported
Stars: ✭ 113 (+21.51%)
Mutual labels:  image-annotation, annotation
Label Studio
Label Studio is a multi-type data labeling and annotation tool with standardized output format
Stars: ✭ 7,264 (+7710.75%)
Mutual labels:  image-annotation, annotation
Coco Annotator
✏️ Web-based image segmentation tool for object detection, localization, and keypoints
Stars: ✭ 1,138 (+1123.66%)
Mutual labels:  image-annotation
Make Sense
Free to use online tool for labelling photos. https://makesense.ai
Stars: ✭ 2,087 (+2144.09%)
Mutual labels:  image-annotation
React Annotation Tool
A React based image & video annotation tool
Stars: ✭ 51 (-45.16%)
Mutual labels:  image-annotation
Labelme
Image Polygonal Annotation with Python (polygon, rectangle, circle, line, point and image-level flag annotation).
Stars: ✭ 7,742 (+8224.73%)
Mutual labels:  image-annotation
etos-deepcut
Deep Extreme Cut http://www.vision.ee.ethz.ch/~cvlsegmentation/dextr . a tool to do automatically object segmentation from extreme points.
Stars: ✭ 24 (-74.19%)
Mutual labels:  annotation
Pyimsegm
Image segmentation - general superpixel segmentation & center detection & region growing
Stars: ✭ 213 (+129.03%)
Mutual labels:  image-annotation
Catmaid
Collaborative Annotation Toolkit for Massive Amounts of Image Data
Stars: ✭ 126 (+35.48%)
Mutual labels:  image-annotation
Goat
Annotate Images (or goats) On The Web™
Stars: ✭ 78 (-16.13%)
Mutual labels:  image-annotation
Lc Finder
An image annotation and object detection tool written in C
Stars: ✭ 163 (+75.27%)
Mutual labels:  image-annotation
Label Tool
Web application for image labeling and segmentation
Stars: ✭ 225 (+141.94%)
Mutual labels:  image-annotation
Labeld
LabelD is a quick and easy-to-use image annotation tool, built for academics, data scientists, and software engineers to enable single track or distributed image tagging. LabelD supports both localized, in-image (multi-)tagging, as well as image categorization.
Stars: ✭ 129 (+38.71%)
Mutual labels:  image-annotation
Awesome Data Annotation
A list of tools for annotating data, managing annotations, etc.
Stars: ✭ 204 (+119.35%)
Mutual labels:  image-annotation
Universal Data Tool
Collaborate & label any type of data, images, text, or documents, in an easy web interface or desktop app.
Stars: ✭ 1,356 (+1358.06%)
Mutual labels:  image-annotation
time-series-annotator
Time series annotation library.
Stars: ✭ 52 (-44.09%)
Mutual labels:  annotation



A plugin for OpenSeadragon that integrates Annotorious to enable creation and display of annotations on high-resolution zoomable images. See the project website for details and live demos.

Installing

Download the latest release and include it in your web page after the OpenSeadragon script.

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

Using

<script>
  window.onload = function() {
    var viewer = OpenSeadragon({
      id: "openseadragon1",
      prefixUrl: "openseadragon/images/",
      tileSources: {
        type: "image",
        url: "1280px-Hallstatt.jpg"
      }
    });

    // Initialize the Annotorious plugin
    var anno = OpenSeadragon.Annotorious(viewer);

    // Load annotations in W3C WebAnnotation format
    anno.loadAnnotations('annotations.w3c.json');

    // Attach handlers to listen to events
    anno.on('createAnnotation', function(a) {
      // Do something
    });
  }
</script>

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 OpenSeadragon

Archipelago Open Source Digital Object Repository Software

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].