Visual Servoing Platform
version 3.2.0 under development (2019-01-22)
|
In this tutorial you will learn how to build ViSP framework for Universal Windows Platform (UWP) to include ViSP functionalities in apps developments that target a wide range of devices including PC, mobile, Xbox, HoloLens, IoT, and Surface Hub.
This tutorial has been tested on Windows 10 (64 bit), with CMake 3.13.1 and Visual Studio 2015.
Install Visual Studio 2015. Make sure that the Universal Windows App Development Tools are selected from the optional features list. Without these tools, you won't be able to create your universal apps. After the installation, start Visual Studio and create an empty C++ project to install the common tools for Visual C++ 2015.
After installing Visual Studio software, you need to enable your Windows 10 device for development.
CMake could be download from http://www.cmake.org. Download the latest release for Windows win64-x64 platform (at the time this tuto was written it was the file cmake-3.13.1-win64-x64.msi
). To install just double click on the msi file.
Install Git for Windows from https://git-for-windows.github.io/. This installation allows then to use git in a cmd
Command Prompt.
If not already done, create a workspace that will contain all ViSP source, build, data set and optional 3rd parties. This workspace is here set to C:\visp-ws
folder, but it could be set to any other location.
To create the workspace, open a cmd
Command Prompt (a fast way to launch this window is to press the Win + R keys on your keyboard. Then, type cmd
or cmd.exe
and press Enter or click/tap OK) and run the following to create a workspace environment var named VISP_WS
:
Open a new cmd
Command Prompt and create the corresponding folder
There are different ways to get ViSP source code.
visp-x.y.z.tar.gz
or visp-x.y.z.zip
is downloaded, uncompress the file in %VISP_WS%\visp\visp-x.y.z
using for axample WinRAR.%VISP_WS%\visp\visp-x.y.z
using for axample WinRAR.git
command line tool: We suppose now that ViSP source is in %VISP_WS%\visp
.
With CMake configure ViSP specifying options for cross compiling for "Windows Store"
operating system in version "10"
targeting a "x86"
platform, by opening a cmd
Command Prompt and running:
If everything goes right you will find ViSP libraries and headers in %VISP_WS%/visp-build-vc14-uwp-ws-10-install
folder. Libraries are located in x86/vc14/bin
subfolder and headers in include
subfolder.
The same process could be applied except that during cmake configuration you have to use "Visual Studio 14 2015 Win64"
generator. Installation folder is the same to ensure a unique installation folder for all the targeted platforms:
If everything goes right you will find ViSP libraries and headers in %VISP_WS%/visp-build-vc14-uwp-ws-10-install
folder. Libraries are located in x64/vc14/bin
subfolder and headers in include
subfolder.
The same process could be applied except that during cmake configuration you have to use "Visual Studio 14 2015 ARM"
generator. Installation folder is the same to ensure a unique installation folder for all the targeted platforms:
If everything goes right you will find ViSP libraries and headers in %VISP_WS%/visp-build-vc14-uwp-ws-10-install
folder. Libraries are located in ARM/vc14/bin
subfolder and headers in include
subfolder.
With CMake configure ViSP specifying options for cross compiling for "Windows Store"
operating system in version "8.1"
targeting a "x86"
platform, by opening a cmd
Command Prompt and running:
If everything goes right you will find ViSP libraries and headers in %VISP_WS%/visp-build-vc14-uwp-ws-8.1-install
folder. Libraries are located in x86/vc14/bin
subfolder and headers in include
subfolder.
With CMake configure ViSP specifying options for cross compiling for "Windows Store"
operating system in version "8.1"
targeting a "x64"
platform, by opening a cmd
Command Prompt and running:
If everything goes right you will find ViSP libraries and headers in %VISP_WS%/visp-build-vc14-uwp-ws-8.1-install
folder. Libraries are located in x64/vc14/bin
subfolder and headers in include
subfolder.
With CMake configure ViSP specifying options for cross compiling for "Windows Store"
operating system in version "8.1"
targeting a "ARM"
platform, by opening a cmd
Command Prompt and running:
If everything goes right you will find ViSP libraries and headers in %VISP_WS%/visp-build-vc14-uwp-ws-8.1-install
folder. Libraries are located in ARM/vc14/bin
subfolder and headers in include
subfolder.
With CMake configure ViSP specifying options for cross compiling for "Windows Phone"
operating system in version "8.1"
targeting a "x86"
platform, by opening a cmd
Command Prompt and running:
If everything goes right you will find ViSP libraries and headers in %VISP_WS%/visp-build-vc14-uwp-wp-8.1-install
folder. Libraries are located in x86/vc14/bin
subfolder and headers in include
subfolder.
With CMake configure ViSP specifying options for cross compiling for "Windows Phone"
operating system in version "8.1"
targeting a "x64"
platform, by opening a cmd
Command Prompt and running:
If everything goes right you will find ViSP libraries and headers in %VISP_WS%/visp-build-vc14-uwp-wp-8.1-install
folder. Libraries are located in x64/vc14/bin
subfolder and headers in include
subfolder.
With CMake configure ViSP specifying options for cross compiling for "Windows Phone"
operating system in version "8.1"
targeting a "ARM"
platform, by opening a cmd
Command Prompt and running:
If everything goes right you will find ViSP libraries and headers in %VISP_WS%/visp-build-vc14-uwp-wp-8.1-install
folder. Libraries are located in ARM/vc14/bin
subfolder and headers in include
subfolder.
In case you're trying to build Windows Store and Windows Phone 10.0 projects having only default Visual Studio 2015 installation you'll likely get the following error during cmake
run:
Resolution consists in: