The OpenIMAJ Core Features Library.
Core notion of features, usually denoted as arrays of data. Definitions of features for all primitive types, features with location and lists of features (both in memory and on disk)..
Here is the list of declaration for core-feature. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.openimaj</groupId> <artifactId>core-feature</artifactId> <version>1.3</version> </dependency>
If you think this Maven repository POM file listing for core-feature is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The core-feature-1.3 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Data Structure | core-math 1.3 Mathematical implementations including geometric, matrix and statistical operators. | 8 |
JUnit | junit 4.8.2 JUnit is a regression testing framework. It is used by the developer who implements unit tests in Java. | 919 |
The following plugins are used in the core-feature-1.3.jar
Here is the content of the POM file.
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>openimaj-core-libs</artifactId> <groupId>org.openimaj</groupId> <version>1.3</version> <relativePath>../</relativePath> </parent> <groupId>org.openimaj</groupId> <artifactId>core-feature</artifactId> <version>1.3</version> <name>The OpenIMAJ Core Features Library</name> <inceptionYear>2011</inceptionYear> <description> Core notion of features, usually denoted as arrays of data. Definitions of features for all primitive types, features with location and lists of features (both in memory and on disk). </description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.openimaj</groupId> <artifactId>core-math</artifactId> <version>1.3</version> <scope>compile</scope> </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> </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>-Xmx1G -Djava.awt.headless=true</argLine> <!-- <parallel>classes</parallel> <perCoreThreadCount>2</perCoreThreadCount> --> </configuration> </plugin> <plugin> <groupId>uk.ac.soton.ecs.jsh2</groupId> <artifactId>jtemp-maven-plugin</artifactId> <version>1.2</version> <executions> <execution> <goals> <goal>generate</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.8</version> </plugin> </plugins> </build> </project>