Download javacv-0.10.jar file

Introduction

You can download javacv-0.10.jar in this page.

License

GPLv2 with Classpath exception

Type List

javacv-0.10.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.bytedeco/javacv/pom.properties
META-INF/maven/org.bytedeco/javacv/pom.xml
org.bytedeco.javacv.BaseChildSettings.class
org.bytedeco.javacv.BaseSettings.class
org.bytedeco.javacv.Blobs.class
org.bytedeco.javacv.BufferRing.class
org.bytedeco.javacv.CameraDevice.class
org.bytedeco.javacv.CameraSettings.class
org.bytedeco.javacv.CanvasFrame.class
org.bytedeco.javacv.ColorCalibrator.class
org.bytedeco.javacv.DC1394FrameGrabber.class
org.bytedeco.javacv.FFmpegFrameGrabber.class
org.bytedeco.javacv.FFmpegFrameRecorder.class
org.bytedeco.javacv.FlyCapture2FrameGrabber.class
org.bytedeco.javacv.FlyCaptureFrameGrabber.class
org.bytedeco.javacv.Frame.class
org.bytedeco.javacv.FrameGrabber.class
org.bytedeco.javacv.FrameRecorder.class
org.bytedeco.javacv.GLCanvasFrame.class
org.bytedeco.javacv.GNImageAligner.class
org.bytedeco.javacv.GNImageAlignerCL.class
org.bytedeco.javacv.GeometricCalibrator.class
org.bytedeco.javacv.HandMouse.class
org.bytedeco.javacv.IPCameraFrameGrabber.class
org.bytedeco.javacv.ImageAligner.class
org.bytedeco.javacv.ImageAlignerCL.class
org.bytedeco.javacv.ImageTransformer.class
org.bytedeco.javacv.ImageTransformerCL.class
org.bytedeco.javacv.JavaCV.class
org.bytedeco.javacv.JavaCVCL.class
org.bytedeco.javacv.JavaCvErrorCallback.class
org.bytedeco.javacv.MarkedPlane.class
org.bytedeco.javacv.Marker.class
org.bytedeco.javacv.MarkerDetector.class
org.bytedeco.javacv.ObjectFinder.class
org.bytedeco.javacv.OpenCVFrameGrabber.class
org.bytedeco.javacv.OpenCVFrameRecorder.class
org.bytedeco.javacv.OpenKinectFrameGrabber.class
org.bytedeco.javacv.PS3EyeFrameGrabber.class
org.bytedeco.javacv.Parallel.class
org.bytedeco.javacv.ProCamColorCalibrator.class
org.bytedeco.javacv.ProCamGeometricCalibrator.class
org.bytedeco.javacv.ProCamTransformer.class
org.bytedeco.javacv.ProCamTransformerCL.class
org.bytedeco.javacv.ProjectiveColorTransformer.class
org.bytedeco.javacv.ProjectiveColorTransformerCL.class
org.bytedeco.javacv.ProjectiveDevice.class
org.bytedeco.javacv.ProjectiveTransformer.class
org.bytedeco.javacv.ProjectiveTransformerCL.class
org.bytedeco.javacv.ProjectorDevice.class
org.bytedeco.javacv.ProjectorSettings.class
org.bytedeco.javacv.ReflectanceInitializer.class
org.bytedeco.javacv.VideoInputFrameGrabber.class
org.bytedeco.javacv.cvkernels.class
org/bytedeco/javacv/ImageTransformer.cl
org/bytedeco/javacv/JavaCV.cl
org/bytedeco/javacv/ProCamTransformer.cl
org/bytedeco/javacv/ProjectiveColorTransformer.cl
org/bytedeco/javacv/ProjectiveTransformer.cl

Pom

javacv-0.10.pom file content.

<?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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.bytedeco</groupId>
  <artifactId>javacv</artifactId>
  <version>0.10</version>
  <packaging>jar</packaging>

  <name>JavaCV</name>
  <description>Java interface to OpenCV and more</description>
  <url>http://bytedeco.org/javacv/</url>

  <licenses>
    <license>
      <name>GPLv2 with Classpath exception</name>
      <url>http://www.gnu.org/software/classpath/license.html</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <developers>
    <developer>
      <name>Samuel Audet</name>
      <email>samuel.audet@gmail.com</email>
    </developer>
  </developers>

  <scm>
    <url>https://github.com/bytedeco/javacv</url>
    <connection>scm:git:git://github.com/bytedeco/javacv.git</connection>
    <developerConnection>scm:git:ssh://git@github.com/bytedeco/javacv.git</developerConnection>
  </scm>

  <distributionManagement>
    <snapshotRepository>
      <id>sonatype-nexus-snapshots</id>
      <name>Sonatype Nexus Snapshots</name>
      <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
    </snapshotRepository>
    <repository>
      <id>sonatype-nexus-staging</id>
      <name>Sonatype Nexus Staging</name>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    </repository>
  </distributionManagement>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.build.timestamp.format>yyyyMMddhhmm</maven.build.timestamp.format>
    <javacpp.version>${project.version}</javacpp.version>
    <!-- Reinclude the following with profiles, either all: -Pall
         or selectively: -Pmarkers,ffmpeg,dc1394,flycapture,openkinect,ps3eye,videoinput,jogamp -->
    <exclude.markers>**/Mark*.java</exclude.markers>
    <exclude.calibration>**/*Calibrator.java</exclude.calibration>
    <exclude.ffmpeg>**/FFmpeg*.java</exclude.ffmpeg>
    <exclude.dc1394>**/DC1394*.java</exclude.dc1394>
    <exclude.flycapture>**/FlyCapture*.java</exclude.flycapture>
    <exclude.openkinect>**/OpenKinect*.java</exclude.openkinect>
    <exclude.ps3eye>**/PS3Eye*.java</exclude.ps3eye>
    <exclude.videoinput>**/VideoInput*.java</exclude.videoinput>
    <exclude.opengl>**/GL*.java</exclude.opengl>
    <exclude.opencl>**/*CL.java</exclude.opencl>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.bytedeco</groupId>
      <artifactId>javacpp</artifactId>
      <version>${javacpp.version}</version>
    </dependency>

    <dependency>
      <groupId>org.bytedeco.javacpp-presets</groupId>
      <artifactId>opencv</artifactId>
      <version>2.4.10-${javacpp.version}</version>
    </dependency>
    <dependency>
      <groupId>org.bytedeco.javacpp-presets</groupId>
      <artifactId>ffmpeg</artifactId>
      <version>2.5.1-${javacpp.version}</version>
    </dependency>
    <dependency>
      <groupId>org.bytedeco.javacpp-presets</groupId>
      <artifactId>flycapture</artifactId>
      <version>2.7.3.13-${javacpp.version}</version>
    </dependency>
    <dependency>
      <groupId>org.bytedeco.javacpp-presets</groupId>
      <artifactId>libdc1394</artifactId>
      <version>2.2.2-${javacpp.version}</version>
    </dependency>
    <dependency>
      <groupId>org.bytedeco.javacpp-presets</groupId>
      <artifactId>libfreenect</artifactId>
      <version>0.5.1-${javacpp.version}</version>
    </dependency>
    <dependency>
      <groupId>org.bytedeco.javacpp-presets</groupId>
      <artifactId>videoinput</artifactId>
      <version>0.200-${javacpp.version}</version>
    </dependency>
    <dependency>
      <groupId>org.bytedeco.javacpp-presets</groupId>
      <artifactId>artoolkitplus</artifactId>
      <version>2.3.1-${javacpp.version}</version>
    </dependency>
    <dependency>
      <groupId>org.bytedeco.javacpp-presets</groupId>
      <artifactId>flandmark</artifactId>
      <version>1.07-${javacpp.version}</version>
    </dependency>

    <dependency>
      <groupId>org.jogamp.gluegen</groupId>
      <artifactId>gluegen-rt-main</artifactId>
      <version>2.0.2</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.jogamp.jogl</groupId>
      <artifactId>jogl-all-main</artifactId>
      <version>2.0.2</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.jogamp.jocl</groupId>
      <artifactId>jocl-main</artifactId>
      <version>2.0.2</version>
      <optional>true</optional>
    </dependency>
  </dependencies>

  <build>
    <finalName>${project.artifactId}</finalName>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
          <excludes>
            <exclude>${exclude.markers}</exclude>
            <exclude>${exclude.calibration}</exclude>
            <exclude>${exclude.ffmpeg}</exclude>
            <exclude>${exclude.dc1394}</exclude>
            <exclude>${exclude.flycapture}</exclude>
            <exclude>${exclude.openkinect}</exclude>
            <exclude>${exclude.ps3eye}</exclude>
            <exclude>${exclude.videoinput}</exclude>
            <exclude>${exclude.opengl}</exclude>
            <exclude>${exclude.opencl}</exclude>
          </excludes>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-dependency-plugin</artifactId>
        <version>2.3</version>
        <executions>
          <execution>
            <id>properties</id>
            <goals>
              <goal>properties</goal>
            </goals>
          </execution>
          <execution>
            <id>copy-dependencies</id>
            <goals>
              <goal>copy-dependencies</goal>
            </goals>
            <configuration>
              <outputDirectory>${project.build.directory}</outputDirectory>
              <stripVersion>true</stripVersion>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.4</version>
        <configuration>
          <archive>
            <manifest>
              <mainClass>org.bytedeco.javacv.JavaCV</mainClass>
              <addClasspath>true</addClasspath>
            </manifest>
            <manifestEntries>
              <!-- <addClasspath/> is broken: http://jira.codehaus.org/browse/MJAR-61 -->
              <Class-Path>./ javacpp.jar opencv.jar ffmpeg.jar flycapture.jar libdc1394.jar libfreenect.jar videoinput.jar artoolkitplus.jar</Class-Path>
              <Name>org/bytedeco/javacv/</Name>
              <Implementation-Title>${project.name}</Implementation-Title>
              <Implementation-Vendor>Bytedeco</Implementation-Vendor>
              <Implementation-Version>${project.version}</Implementation-Version>
              <Specification-Title>${project.name}</Specification-Title>
              <Specification-Vendor>Bytedeco</Specification-Vendor>
              <Specification-Version>${project.version}</Specification-Version>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-install-plugin</artifactId>
        <version>2.3</version>
        <configuration>
          <createChecksum>true</createChecksum>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.3</version>
        <configuration>
          <descriptors>
            <descriptor>src/main/assembly/bin.xml</descriptor>
            <descriptor>src/main/assembly/src.xml</descriptor>
          </descriptors>
        </configuration>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.2</version>
        <executions>
          <execution>
            <id>attach-source</id>
            <goals>
              <goal>jar-no-fork</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.9</version>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
            <configuration>
              <detectLinks>true</detectLinks>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-deploy-plugin</artifactId>
        <version>2.4</version>
        <configuration>
          <skip>true</skip>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.sonatype.plugins</groupId>
        <artifactId>nexus-staging-maven-plugin</artifactId>
        <version>1.6</version>
        <executions>
          <execution>
            <id>default-deploy</id>
            <phase>deploy</phase>
            <goals>
              <goal>deploy</goal>
            </goals>
          </execution>
        </executions>
        <extensions>true</extensions>
        <configuration>
          <serverId>sonatype-nexus-staging</serverId>
          <nexusUrl>https://oss.sonatype.org/</nexusUrl>
          <skipStagingRepositoryClose>true</skipStagingRepositoryClose>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <profiles>
    <profile>
      <id>doclint-java8-disable</id>
      <activation>
        <jdk>[1.8,)</jdk>
      </activation>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-javadoc-plugin</artifactId>
            <configuration>
              <additionalparam>-Xdoclint:none</additionalparam>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>

    <profile>
      <id>sign-artifacts</id>
      <activation>
        <property>
          <name>performRelease</name>
          <value>true</value>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>1.1</version>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>

    <profile>
      <id>all</id>
      <properties>
        <exclude.markers>none</exclude.markers>
        <exclude.calibration>none</exclude.calibration>
        <exclude.ffmpeg>none</exclude.ffmpeg>
        <exclude.dc1394>none</exclude.dc1394>
        <exclude.flycapture>none</exclude.flycapture>
        <exclude.openkinect>none</exclude.openkinect>
        <exclude.ps3eye>none</exclude.ps3eye>
        <exclude.videoinput>none</exclude.videoinput>
        <exclude.opengl>none</exclude.opengl>
        <exclude.opencl>none</exclude.opencl>
      </properties>
    </profile>
    <profile>
      <id>markers</id>
      <properties>
        <exclude.markers>none</exclude.markers>
        <exclude.calibration>none</exclude.calibration>
      </properties>
    </profile>
    <profile>
      <id>ffmpeg</id>
      <properties>
        <exclude.ffmpeg>none</exclude.ffmpeg>
      </properties>
    </profile>
    <profile>
      <id>dc1394</id>
      <properties>
        <exclude.dc1394>none</exclude.dc1394>
      </properties>
    </profile>
    <profile>
      <id>flycapture</id>
      <properties>
        <exclude.flycapture>none</exclude.flycapture>
      </properties>
    </profile>
    <profile>
      <id>openkinect</id>
      <properties>
        <exclude.openkinect>none</exclude.openkinect>
      </properties>
    </profile>
    <profile>
      <id>ps3eye</id>
      <properties>
        <exclude.ps3eye>none</exclude.ps3eye>
      </properties>
    </profile>
    <profile>
      <id>videoinput</id>
      <properties>
        <exclude.videoinput>none</exclude.videoinput>
      </properties>
    </profile>
    <profile>
      <id>jogamp</id>
      <properties>
        <exclude.opengl>none</exclude.opengl>
        <exclude.opencl>none</exclude.opencl>
      </properties>
    </profile>
  </profiles>

</project>

POM Entry

<dependency>
   <groupId>org.bytedeco</groupId>
   <artifactId>javacv</artifactId>
   <version>0.10</version>
</dependency>

Download

If you think the following javacv-0.10.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download javacv-0.10.jar file




PreviousNext

Related