locked-fg / JFeatureLib

Free Java library for image features and point/region detectors used in ComputerVision
38 stars 14 forks source link

DOI

JFeatureLib

JFeatureLib is a free library that provides implementations for several kinds of image features and also several point/region detectors used mainly in the research field of ComputerVision.

Refer to the Wiki for further information

Releases can also be found at Maven Central: https://oss.sonatype.org/content/repositories/releases/de/lmu/ifi/dbs/jfeaturelib/JFeatureLib/

The API can be found here: http://jfeaturelib-api.locked.de

Build & Install

JFeatureLib's dependencies are all but one in MavenCentral. To get LIRE into the maven environment as well and compile JFeatureLib, just use the following commands:

git clone https://github.com/locked-fg/LIRE.git
cd LIRE
mvn -Prelease install -DskipTests=true -Dgpg.skip=true -Dmaven.javadoc.skip=true

cd ..
git clone https://github.com/locked-fg/JFeatureLib.git
cd JFeatureLib
mvn clean install 

Include JFeatureLib in your program:

<dependency>
    <groupId>de.lmu.ifi.dbs.jfeaturelib</groupId>
    <artifactId>JFeatureLib</artifactId>
    <version>1.6.5</version>
    <type>jar</type>
</dependency>

Changelog