Skip to content

Commit

Permalink
* Lower Maven prerequisite in the pom.xml file to 3.0 (issue byted…
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Apr 9, 2016
1 parent 7a3839d commit 8685e77
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

* Lower Maven prerequisite in the `pom.xml` file to 3.0 ([issue bytedeco/javacpp#93](https://github.com/bytedeco/javacpp/issues/93))

### 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
Expand Down
12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ Introduction
------------
ProCamTracker is a user-friendly computer application to turn a perfectly normal pair of color camera and projector into a system that can track without markers a real world object (currently limited to matte planes), while simultaneously projecting on its surface geometrically corrected video images using the direct image alignment algorithm included in [JavaCV](https://github.com/bytedeco/javacv), an open source library I developed as part of my doctoral research. More information about the algorithm itself can be found in the related CVPR 2010 paper below, which you may cite if you find this software useful. Thank you.

Samuel Audet, Masatoshi Okutomi, and Masayuki Tanaka. Direct Image Alignment of Projector-Camera Systems with Planar Surfaces. The 23rd IEEE Conference on Computer Vision and Pattern Recognition (CVPR 2010). IEEE Computer Society, June 2010. http://www.ok.ctrl.titech.ac.jp/~saudet/publications/cvpr2010.pdf
[Samuel Audet, Masatoshi Okutomi, and Masayuki Tanaka. Direct Image Alignment of Projector-Camera Systems with Planar Surfaces. The 23rd IEEE Conference on Computer Vision and Pattern Recognition (CVPR 2010). IEEE Computer Society, June 2010.](http://www.ok.ctrl.titech.ac.jp/res/PCS/publications/cvpr2010.pdf)

This method requires a geometrically and color calibrated projector-camera system. To perform the calibration, I recommend [ProCamCalib](http://www.ok.ctrl.titech.ac.jp/~saudet/procamcalib/), a tool I previously released for that purpose.
This method requires a geometrically and color calibrated projector-camera system. To perform the calibration, I recommend [ProCamCalib](https://github.com/bytedeco/procamcalib), a tool I previously released for that purpose.


Downloads
Expand Down Expand Up @@ -82,8 +82,6 @@ Please keep me informed of any updates or fixes you make to the code so that I m


----
Copyright (C) 2009-2015 Samuel Audet [saudet `at` ok.ctrl.titech.ac.jp](mailto:saudet at ok.ctrl.titech.ac.jp)
Web site: http://www.ok.ctrl.titech.ac.jp/~saudet/procamtracker/

Licensed under the GNU General Public License version 2 (GPLv2).
Please refer to LICENSE.txt or http://www.gnu.org/licenses/ for details.
Project lead: Samuel Audet [samuel.audet `at` gmail.com](mailto:samuel.audet at gmail.com)
Developer site: https://github.com/bytedeco/procamtracker
Discussion group: http://groups.google.com/group/javacv
6 changes: 3 additions & 3 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>procamtracker</artifactId>
<version>1.1</version>
<version>1.2-SNAPSHOT</version>
<packaging>jar</packaging>

<name>ProCamTracker</name>
Expand All @@ -22,7 +22,7 @@
<developers>
<developer>
<name>Samuel Audet</name>
<email>saudet@ok.ctrl.titech.ac.jp</email>
<email>samuel.audet@gmail.com</email>
</developer>
</developers>

Expand All @@ -33,7 +33,7 @@
</scm>

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

<distributionManagement>
Expand Down

0 comments on commit 8685e77

Please sign in to comment.