Install Image Recognition module
Digital asset management (DAM) Unbundled: Extension
This is a technical preview of version To learn more or to request access for testing, contact us at dam5.feedback@magnolia-cms.com. |
Download | Multiple submodules |
---|---|
Edition |
DX Core |
License |
|
Issues |
|
Maven site |
|
Latest |
3.0.0-beta1 |
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>3.0.0-beta1</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>3.0.0-beta1</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>3.0.0-beta1</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>3.0.0-beta1</version> (1)
</dependency>
1 | Should you need to specify the module version, do it using <version> . |