Skip to content

Commit

Permalink
Release version 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Oct 25, 2015
1 parent 17938f9 commit 99130a2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

### October 25, 2015 version 1.1
* Upgrade support to FFmpeg 2.8.x
* Upgrade all Maven dependencies and plugins to latest versions, thus bumping minimum requirements to Java SE 7 and Maven 3.0

### July 11, 2015 version 1.0
Expand Down
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,30 +12,29 @@ Please cite my Procams 2009 paper (reference below) if you find this tool useful

Downloads
---------
* ProCamCalib 1.0 binary archive [procamcalib-1.0-bin.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/procamcalib/1.0/procamcalib-1.0-bin.zip) (100 MB)
* ProCamCalib 1.0 source archive [procamcalib-1.0-src.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/procamcalib/1.0/procamcalib-1.0-src.zip) (49 KB)
* ProCamCalib 1.1 binary archive [procamcalib-1.1-bin.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/procamcalib/1.1/procamcalib-1.1-bin.zip) (102 MB)
* ProCamCalib 1.1 source archive [procamcalib-1.1-src.zip](http://search.maven.org/remotecontent?filepath=org/bytedeco/procamcalib/1.1/procamcalib-1.1-src.zip) (50 KB)

The binary archive contains builds for Linux, Mac OS X, and Windows.


Required Software
-----------------
I wrote ProCamCalib itself in Java and its binary should run on any platform where an implementation of Java SE 6 or newer exists. The binary distribution also contains natively compiled code for Linux, Mac OS X, and Windows, needed by JavaCV.
I wrote ProCamCalib itself in Java and its binary should run on any platform where an implementation of Java SE 7 or newer exists. The binary distribution also contains natively compiled code for Linux, Mac OS X, and Windows, needed by JavaCV.

Please install the following before running ProCamCalib:

* An implementation of Java SE 6 or newer
* An implementation of Java SE 7 or newer:
* OpenJDK http://openjdk.java.net/install/ or
* Sun JDK http://www.oracle.com/technetwork/java/javase/downloads/ or
* IBM JDK http://www.ibm.com/developerworks/java/jdk/ or
* Java SE for Mac OS X http://developer.apple.com/java/ etc.
* IBM JDK http://www.ibm.com/developerworks/java/jdk/

And be aware that ProCamCalib runs _a lot_ faster under the "server" JVM than the "client" JVM, but because of its bigger size, not all distributions of Java come with the server one.

Additionally, for IIDC/DCAM cameras, Microsoft's Kinect stereo camera, or the PS3 Eye:

* libdc1394 2.1.x or 2.2.x http://sourceforge.net/projects/libdc1394/files/
* FlyCapture 2.7.x http://www.ptgrey.com/flycapture-sdk
* FlyCapture 2.7.x or 2.8.x http://www.ptgrey.com/flycapture-sdk
* libfreenect 0.5.x https://github.com/OpenKinect/libfreenect
* CL Eye Platform SDK http://codelaboratories.com/downloads/

Expand Down Expand Up @@ -73,13 +72,13 @@ Source Code
I make all the source code available on GitHub at https://github.com/bytedeco/procamcalib . You will also need the following to modify and build the application:

* A C/C++ compiler
* JavaCPP 1.0 https://github.com/bytedeco/javacpp
* JavaCV 1.0 https://github.com/bytedeco/javacv
* JavaCPP 1.1 https://github.com/bytedeco/javacpp
* JavaCV 1.1 https://github.com/bytedeco/javacv
* OpenCV 3.0.0 http://sourceforge.net/projects/opencvlibrary/files/
* FFmpeg 2.7.x http://ffmpeg.org/download.html
* FFmpeg 2.8.x http://ffmpeg.org/download.html
* ARToolKitPlus 2.3.x https://launchpad.net/artoolkitplus
* NetBeans 8.0 http://netbeans.org/downloads/
* Maven 2 or 3 http://maven.apache.org/download.html
* Maven 3.x http://maven.apache.org/download.html

(The icons were shamelessly copied from the source code repository of NetBeans. Also licensed under the GPLv2.)

Expand Down
5 changes: 4 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco</groupId>
<artifactId>procamcalib</artifactId>
<version>1.1-SNAPSHOT</version>
<version>1.1</version>
<packaging>jar</packaging>

<name>ProCamCalib</name>
Expand Down Expand Up @@ -320,6 +320,9 @@
</goals>
</execution>
</executions>
<configuration>
<useAgent>false</useAgent>
</configuration>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit 99130a2

Please sign in to comment.