Skip to content

Commit

Permalink
Release version 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Apr 10, 2019
1 parent 709c208 commit 1d54ecc
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 17 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target/
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

### April 11, 2019 version 1.5
* Adjust code to support latest changes in JavaCV

### January 11, 2019 version 1.4.4
* Remove no longer necessary workaround that would produce memory leaks
* Upgrade support to OpenCV 4.0.x and FFmpeg 4.1.x
Expand Down
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ More information at http://www.ok.sc.e.titech.ac.jp/res/PCS/research/procamcalib

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

The binary archive contains builds for Linux, Mac OS X, and Windows.
Archives containing JAR files are available as [releases](https://github.com/bytedeco/procamcalib/releases). The binary archive contains builds for Linux, Mac OS X, and Windows.


Required Software
Expand Down Expand Up @@ -75,8 +72,8 @@ 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.4.4 https://github.com/bytedeco/javacpp
* JavaCV 1.4.4 https://github.com/bytedeco/javacv
* JavaCPP 1.5 https://github.com/bytedeco/javacpp
* JavaCV 1.5 https://github.com/bytedeco/javacv
* OpenCV 4.0.x http://sourceforge.net/projects/opencvlibrary/files/
* FFmpeg 4.1.x http://ffmpeg.org/download.html
* ARToolKitPlus 2.3.x https://launchpad.net/artoolkitplus
Expand Down
9 changes: 3 additions & 6 deletions 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.4.4</version>
<version>1.5</version>

<name>ProCamCalib</name>
<description>A User-Friendly Method to Calibrate Cameras and Projector-Camera Systems</description>
Expand All @@ -31,10 +31,6 @@
<developerConnection>scm:git:ssh://[email protected]/bytedeco/procamcalib.git</developerConnection>
</scm>

<prerequisites>
<maven>3.0</maven>
</prerequisites>

<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
Expand Down Expand Up @@ -170,7 +166,7 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>3.8.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
Expand Down Expand Up @@ -225,6 +221,7 @@
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<attach>false</attach>
<descriptors>
<descriptor>src/main/assembly/bin.xml</descriptor>
<descriptor>src/main/assembly/src.xml</descriptor>
Expand Down
6 changes: 4 additions & 2 deletions src/main/java/org/bytedeco/procamcalib/CalibrationWorker.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,10 @@
import org.bytedeco.javacv.ProjectorSettings;
import org.bytedeco.javacv.OpenCVFrameConverter;

import static org.bytedeco.javacpp.opencv_core.*;
import static org.bytedeco.javacpp.opencv_imgproc.*;
import org.bytedeco.opencv.opencv_core.*;
import org.bytedeco.opencv.opencv_imgproc.*;
import static org.bytedeco.opencv.global.opencv_core.*;
import static org.bytedeco.opencv.global.opencv_imgproc.*;

/**
*
Expand Down
8 changes: 5 additions & 3 deletions src/main/java/org/bytedeco/procamcalib/MainFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,11 @@
import org.openide.nodes.Node;
import org.openide.util.Lookup;

import static org.bytedeco.javacpp.opencv_core.*;
import static org.bytedeco.javacpp.opencv_imgcodecs.*;
import static org.bytedeco.javacpp.opencv_imgproc.*;
import org.bytedeco.opencv.opencv_core.*;
import org.bytedeco.opencv.opencv_imgproc.*;
import static org.bytedeco.opencv.global.opencv_core.*;
import static org.bytedeco.opencv.global.opencv_imgcodecs.*;
import static org.bytedeco.opencv.global.opencv_imgproc.*;

/**
*
Expand Down

0 comments on commit 1d54ecc

Please sign in to comment.