- Install Git
- Install Visual Studio 2013:
- Install Qt (Version 5.4 or greater)
- Make sure you select the correct version (
msvc2013 64-bit
or similar)
- Make sure you select the correct version (
- Add Qt to your PATH (
C:\Qt\5.4\msvc2013_64\bin
or similar)
git clone --recursive https://github.com/cpvrlab/ImagePlay.git
cd ImagePlay
qmake -tp vc -r
Visual Studio:
- Open ImagePlay.sln
- Set ImagePlay as startup project.
- Run
Qt Creator:
- Open ImagePlay.pro
- Disable Shadow build in the project settings.
- Run
First make sure you have a recent version of XCode.
Install Homebrew
brew install qt5
brew link --force qt5
brew tap homebrew/science
brew install opencv3
git clone --recursive https://github.com/cpvrlab/ImagePlay.git
cd ImagePlay
qmake -recursive
make
Note Currently the build based on homebrews qt5.rb has some difficulties to find the correct libraries. You can use Qt Creator (Version 5.5) where you load the Imageplay.pro project with the Desktop QT 5.5 profile.
The following packages are necessary to compile (Debian/Ubuntu).
sudo apt-get install qt5-default qt5-qmake git
sudo apt-get install libfreeimage-dev libopencv-core-dev libopencv-core-dev libopencv-imgproc-dev libopencv-highgui-dev
git clone --recursive https://github.com/cpvrlab/ImagePlay.git
cd ImagePlay
qmake -recursive
make
sudo make install
The following files are installed:
/usr/bin/imageplay
/usr/share/imageplay/*
Append CONFIG+=debug
to the qmake -recursive
command (note: In such a case, make
current does not rebuild imageplay
binary automatically)