https://recogito.github.io/annotorious
Add image annotation functionality to any web page with a few lines of JavaScript.
https://recogito.github.io/annotorious
annotation annotation-tool data-annotation-tools image-annotation image-annotation-tool
Last synced: about 2 months ago
JSON representation
Add image annotation functionality to any web page with a few lines of JavaScript.
- Host: GitHub
- URL: https://recogito.github.io/annotorious
- Owner: annotorious
- License: bsd-3-clause
- Created: 2020-03-29T15:03:16.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-12-20T20:21:23.000Z (10 months ago)
- Last Synced: 2024-12-25T06:06:56.935Z (10 months ago)
- Topics: annotation, annotation-tool, data-annotation-tools, image-annotation, image-annotation-tool
- Language: TypeScript
- Homepage: http://annotorious.dev
- Size: 4.14 MB
- Stars: 692
- Watchers: 20
- Forks: 108
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-data-annotation - Annotorious
README

# Annotorious - JavaScript Image Annotation
Add image annotation functionality to any web page with a few lines of JavaScript. Visit the
[project website](https://annotorious.dev) for documentation and live demos.```sh
npm install @annotorious/annotorious
```## Quick Start
```js
import { createImageAnnotator } from '@annotorious/annotorious';import '@annotorious/annotorious/annotorious.css';
const anno = createImageAnnotator('image-to-annotate');
// Load annotations from a file
anno.loadAnnotations('./annotations.json');// Listen to user events
anno.on('createAnnotation', function(annotation) {
console.log('new annotation', annotation);
});
```## License
Annotorious is licensed under the [BSD 3-Clause](LICENSE) license.
## Community
Visit the [Discussion Forum](https://github.com/annotorious/annotorious/discussions) for community support, or file an
issue on the [Issue Tracker](https://github.com/annotorious/annotorious/issues).## Professional Support Available
Looking for help with integration, customization, or feature development? I offer consulting and professional services for teams and organizations that need dedicated support or technical guidance. Services are available on an hourly basis.
Contact me at hello@rainersimon.io to discuss your project.
## Older Versions
Documentation for Annotorious version 2.7 [is available here](https://annotorious.github.io).