ImageCollectionTool
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.openimaj.tools</groupId> <artifactId>ImageCollectionTool</artifactId> <version>1.3.10</version> </dependency>
<?xml version="1.0"?> <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"> <parent> <artifactId>openimaj-tools</artifactId> <groupId>org.openimaj</groupId> <version>1.3.10</version> <relativePath>../</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.openimaj.tools</groupId> <artifactId>ImageCollectionTool</artifactId> <name>ImageCollectionTool</name> <packaging>jar</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <inceptionYear>2011</inceptionYear> <description> Tool for extracting images from collections (zip, gallery, video etc.). </description> <dependencies> <dependency> <groupId>org.openimaj</groupId> <artifactId>ImprovedArgs4J</artifactId> <version>1.3.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.openimaj</groupId> <artifactId>image-local-features</artifactId> <version>1.3.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.openimaj</groupId> <artifactId>test-resources</artifactId> <version>1.3.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openimaj</groupId> <artifactId>faces</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>org.openimaj</groupId> <artifactId>core-video-capture</artifactId> <version>1.3.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.openimaj</groupId> <artifactId>core-video</artifactId> <version>1.3.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>xuggle-utils</groupId> <artifactId>xuggle-utils</artifactId> <version>1.21</version> </dependency> <dependency> <groupId>org.openimaj</groupId> <artifactId>xuggle-video</artifactId> <version>1.3.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.openimaj</groupId> <artifactId>video-processing</artifactId> <version>1.3.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.openimaj</groupId> <artifactId>klt-tracker</artifactId> <version>1.3.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>0.8.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openimaj</groupId> <artifactId>core-hadoop</artifactId> <version>1.3.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.gdata</groupId> <artifactId>gdata-youtube-2.0</artifactId> <version>1.41.5</version> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.2.1</version> <configuration> <finalName>ImageCollectionTool</finalName> <appendAssemblyId>false</appendAssemblyId> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>org.openimaj.tools.imagecollection.tool.ImageCollectionTool</mainClass> </manifest> </archive> </configuration> </plugin> <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>localfeatures</exclude> </excludes> <mapping> <jtemp>JAVADOC_STYLE</jtemp> </mapping> <useDefaultMapping>true</useDefaultMapping> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.6</version> <configuration> <argLine>-Xmx2G -Djava.awt.headless=true</argLine> <!-- <parallel>classes</parallel> <perCoreThreadCount>2</perCoreThreadCount> --> </configuration> </plugin> </plugins> </build> </project>