Install Image Recognition module
Digital asset management Unbundled: Extension
Download | Multiple submodules |
---|---|
Edition |
DX Core |
License |
|
Issues |
|
Maven site |
|
Latest |
2.0.2 |
The Image Recognition module searches for untagged images, recognizes and tags them via an external image recognition solution. The module also provides the integration of the image recognition feature with content tags.
Module structure
artifactID | Description |
---|---|
|
Parent reactor. |
|
Provides functionality to integrate content tags and the image recognition service using decorations. |
|
Provides the Java API for image recognition service implementations. |
|
Provides the Magnolia integration, delegating to the chosen service. |
|
Provides functionality to recognize images via Amazon Rekognition. |
Installing with Maven
Maven is the easiest way to install the module. Add the following to your bundle:
<dependency>
<groupId>info.magnolia.ai.image</groupId>
<artifactId>magnolia-image-recognition-parent</artifactId>
<version>2.0.2</version> (1)
</dependency>
1 | Should you need to specify the module version, do it using <version> . |
<dependency>
<groupId>info.magnolia.ai.image</groupId>
<artifactId>magnolia-content-tags-integration</artifactId>
<version>2.0.2</version> (1)
</dependency>
1 | Should you need to specify the module version, do it using <version> . |
<dependency>
<groupId>info.magnolia.ai.image</groupId>
<artifactId>magnolia-image-recognition-api</artifactId>
<version>2.0.2</version> (1)
</dependency>
1 | Should you need to specify the module version, do it using <version> . |
<dependency>
<groupId>info.magnolia.ai.image</groupId>
<artifactId>magnolia-amazon-image-recognition</artifactId>
<version>2.0.2</version> (1)
</dependency>
1 | Should you need to specify the module version, do it using <version> . |