@myrmidon/ngx-annotorious
TypeScript icon, indicating that this package has built-in type declarations

0.0.4 • Public • Published

NgxAnnotorious

📦 @myrmidon/ngx-annotorious

This project was generated using Angular CLI version 19.0.0.

This library is a minimalist set of components wrapping Annotorious V3 functionalities for use in an Angular application.

Being designed with a wider context of use, the image annotator can also deal with a completely user-defined model, not necessarily limited to the W3C annotation. In the bigger application where this is going to be used, Annotorious is used to select a portion of an image, while the model to be attached to it is user-defined.

Setup

  1. install Annotorious in your Angular app:
    • npm i @annotorious/annotorious @myrmidon/ngx-annotorious.
    • in angular.json, add to styles the value "node_modules/@annotorious/annotorious/dist/annotorious.css".
  2. for this library, in your app.config, configure the default options for Material dialogs, as annotations metadata are edited inside a popup, e.g.:
// in appConfig providers array:
{
  provide: MAT_DIALOG_DEFAULT_OPTIONS,
  useValue: {
    hasBackdrop: true,
    maxHeight: '800px',
  },
},

Demo App

In the demo shell workspace hosting this library for development, the homepage uses an image annotator component wrapping some core components:

  • a toolbar component for tool selection (ImgAnnotationToolbar);
  • an img with a simple image loaded from the application assets for demo purposes. This element is decorated with a directive wrapping the Annotorious functionality (ImgAnnotatorDirective);
  • a list of annotations.

ImgAnnotatorDirective

Directive:

  • 🚩 imgAnnotator
  • 🔑 ImgAnnotatorDirective
  • ▶️ input:
    • config (AnnotoriousConfig)
    • tool (DrawingTool)
    • annotations (ImageAnnotation[]): the initial annotations to add at start.
    • selectedAnnotation (ImageAnnotation?)
    • additionalTools (string[]?)
  • 🔥 output:
    • annotatorInit (ImageAnnotator)
    • clickAnnotation ({annotation: ImageAnnotation, originalEvent: PointerEvent})
    • createAnnotation (ImageAnnotation)
    • deleteAnnotation (ImageAnnotation)
    • mouseEnterAnnotation (ImageAnnotation)
    • mouseLeaveAnnotation (ImageAnnotation)
    • selectionChanged (ImageAnnotation?)
    • updateAnnotation ({ updated: ImageAnnotation, previous: ImageAnnotation })
    • viewportIntersect (ImageAnnotation[]): for OSD only.

The core of the library is the lightweight directive ImgAnnotatorDirective used to wrap an Annotorious annotator.

This takes care of:

  • initializing an ImageAnnotator instance at the right time in the Angular component lifecycle;
  • configure it as required;
  • wrap its main functions, and wire up listeners to its events, so that they can be forwarded to its Angular consumer.

ImgAnnotationList

Class:

  • 🔃 properties:
    • annotations$: observable of ListAnnotation<T>[].
    • selectedAnnotation$: observable of ListAnnotation<T> or undefined, representing the currently selected annotation if any.
    • annotationToString: a function used to build a string representing a ListAnnotation<T>.
    • image: the reference GalleryImage.
  • 👉 methods:
    • getAnnotations()
    • clearAnnotations()
    • setAnnotations(annotations: ListAnnotation<T>[])
    • removeAnnotation(id: string)
    • editAnnotation(annotation: ImageAnnotation)
    • selectAnnotation(annotation?: ListAnnotation<T>)
    • editAnnotationAt(index: number)
    • selectAnnotationAt(index: number)
    • removeAnnotationAt(index: number)
  • 🔥 event handlers:
    • onCreateAnnotation(annotation: ImageAnnotation)
    • onSelectionChange(annotation?: ImageAnnotation)
    • onDeleteAnnotation(annotation: ImageAnnotation)

The core logic for orchestrating events and actions for the wrapped annotator is implemented in a generic ImgAnnotationList class. This keeps its own storage of annotations, so that it includes any third-party model, whatever its complexity, attached to the selected portion of an image; and provides a simple API surface to be consumed by other Angular components.

The extended annotation model for this list, ListAnnotation<T>, is a wrapper for the Annotorious annotation including:

  • id: an ID, equal to that of the wrapped annotation (string);
  • image: a reference image (GalleryImage);
  • value: the Annotorious annotation (ImageAnnotation);
  • payload: an additional payload of type T.

This custom model is stored in a parallel storage mantained by the image annotator component. This storage is kept in synch with the ImageAnnotator storage by listening to its deletion and selection change events.

In the end, on the Angular side only the list synched storage is important, because it will hold all the annotations generated by the ImageAnnotator wrapped in a larger structure.

Selectors

Currently, Annotorious V3 default selectors are limited to rectangle and polygon. Here are examples of extended annotations for both, using the demo test payload which is just a string. The wrapped Annotorious annotation corresponds to the object in value.

  • rectangle:
{
    "id": "b764a6e2-66d9-4671-9acb-b3ab345b0f35",
    "value": {
        "id": "b764a6e2-66d9-4671-9acb-b3ab345b0f35",
        "bodies": [
            {
                "id": "b7dc11aa-46d7-5d64-8200-6da9ccf7343a",
                "annotation": "b764a6e2-66d9-4671-9acb-b3ab345b0f35",
                "type": "TextualBody",
                "value": "a rectangle",
                "purpose": "commenting"
            }
        ],
        "target": {
            "annotation": "b764a6e2-66d9-4671-9acb-b3ab345b0f35",
            "selector": {
                "type": "RECTANGLE",
                "geometry": {
                    "bounds": {
                        "minX": 175.55555725097656,
                        "minY": 128.6666717529297,
                        "maxX": 291.1111145019531,
                        "maxY": 195.3333282470703
                    },
                    "x": 175.55555725097656,
                    "y": 128.6666717529297,
                    "w": 115.55555725097656,
                    "h": 66.66665649414062
                }
            },
            "creator": {
                "isGuest": true,
                "id": "Ndrsy7VHI4FQygSKml14"
            },
            "created": "2024-12-28T08:22:15.086Z"
        }
    },
    "image": {
        "id": "1",
        "uri": "sample.jpg",
        "title": "sample",
        "description": "Sample image"
    },
    "payload": "a rectangle"
}
  • polygon:
{
    "id": "1e93a5cb-21df-4f1a-a191-2dd570981030",
    "value": {
        "id": "1e93a5cb-21df-4f1a-a191-2dd570981030",
        "bodies": [
            {
                "id": "f45862c7-fa79-b1f8-b64e-3a6137014466",
                "annotation": "1e93a5cb-21df-4f1a-a191-2dd570981030",
                "type": "TextualBody",
                "value": "a polygon",
                "purpose": "commenting"
            }
        ],
        "target": {
            "annotation": "1e93a5cb-21df-4f1a-a191-2dd570981030",
            "selector": {
                "type": "POLYGON",
                "geometry": {
                    "bounds": {
                        "minX": 379.5555725097656,
                        "minY": 225.1111602783203,
                        "maxX": 534.6666870117188,
                        "maxY": 290.4444580078125
                    },
                    "points": [
                        [
                            379.5555725097656,
                            290.4444580078125
                        ],
                        [
                            534.6666870117188,
                            225.1111602783203
                        ],
                        [
                            534.6666870117188,
                            225.1111602783203
                        ],
                        [
                            516.888916015625,
                            267.33331298828125
                        ],
                        [
                            516.888916015625,
                            267.33331298828125
                        ],
                        [
                            516.888916015625,
                            267.33331298828125
                        ]
                    ]
                }
            },
            "creator": {
                "isGuest": true,
                "id": "Ndrsy7VHI4FQygSKml14"
            },
            "created": "2024-12-28T08:22:58.404Z"
        }
    },
    "image": {
        "id": "1",
        "uri": "sample.jpg",
        "title": "sample",
        "description": "Sample image"
    },
    "payload": "a polygon"
}

Readme

Keywords

Package Sidebar

Install

npm i @myrmidon/ngx-annotorious

Weekly Downloads

0

Version

0.0.4

License

none

Unpacked Size

104 kB

Total Files

12

Last publish

Collaborators

  • myrmidon