This module contains the image support extension with OpenCV. It is based on the Java package from OpenPnP.
Right now, the package provides an OpenCVImage
that acts as a faster implementation than the native BufferedImage
. Once this package is added to your classpath, it will automatically be used through the standard DJL ImageFactory
.
The latest javadocs can be found on here.
You can also build the latest javadocs locally using the following command:
./gradlew javadoc
The javadocs output is built in the build/doc/javadoc
folder.
You can pull the module from the central Maven repository by including the following dependency in your pom.xml
file:
<dependency>
<groupId>ai.djl.opencv</groupId>
<artifactId>opencv</artifactId>
<version>0.30.0</version>
</dependency>