New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@recogito/annotorious

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@recogito/annotorious

A JavaScript image annotation library

2.0.0-alpha
Source
npm
Version published
Maintainers
1
Created
Source

Annotorious 2

A JavaScript library for image annotation. Annotorious 2 is a modernized reboot of the (now outdated) original Annotorious.

!! Work in progress !!

Resources

  • API Reference
  • Demo

Installing

If you use npm, npm install @recogito/annotorious. Otherwise download the latest release.

<script src="annotorious-2.0.0-alpha.min.js"></script>

Using

Make an image annotate-able with just a few lines of JavaScript.

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

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

Keywords

Annotation

FAQs

Package last updated on 09 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts