Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1010 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 1010 Bytes

Image support with OpenCV

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.

Documentation

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.

Installation

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>