object-detection
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>object-detection</artifactId>
<version>1.3.10</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>openimaj-image</artifactId>
<groupId>org.openimaj</groupId>
<version>1.3.10</version>
</parent>
<artifactId>object-detection</artifactId>
<packaging>jar</packaging>
<name>Object Detection</name>
<inceptionYear>2011</inceptionYear>
<description>Support for object detection, including a haar-cascade implementation</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>image-processing</artifactId>
<version>1.3.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openimaj</groupId>
<artifactId>image-feature-extraction</artifactId>
<version>1.3.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>xpp3</groupId>
<artifactId>xpp3_min</artifactId>
<version>1.1.4c</version>
</dependency>
<dependency>
<groupId>xmlpull</groupId>
<artifactId>xmlpull</artifactId>
<version>1.1.3.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<header>src/etc/header.txt</header>
<strictCheck>true</strictCheck>
<properties>
<year>${project.inceptionYear}</year>
</properties>
<excludes>
<exclude>AUTHORS</exclude>
<exclude>COPYING</exclude>
<exclude>**/*.xml</exclude>
</excludes>
<mapping>
<jtemp>JAVADOC_STYLE</jtemp>
</mapping>
<useDefaultMapping>true</useDefaultMapping>
</configuration>
</plugin>
</plugins>
</build>
</project>