You are here: Start » Getting Started » SDK Installation
SDK Installation
Requirements
Adaptive Vision Library is designed to be a part of applications working under control of the Microsoft Windows operating system. Supported versions are: Vista, 7 and 8, as well as the corresponding embedded editions.
To build an application using Adaptive Vision Library, Microsoft Visual Studio environment is required. Supported versions are: 2010, 2012, 2013 and 2015.
Adaptive Vision Library can be also used on Linux operating system with GCC compiler - for details consult Using SDK on Linux article.
Running the Installer
The installation process is required to copy the files to the proper folders and to set the environment variables used for building applications using Adaptive Vision Library.
After the installation, a license for Adaptive Vision Library product has to be loaded. It can be done with the License Manager tool available in the Start Menu.
To verify that the installation has been successful and the license works correctly, one can try to load, build and run example programs, which are available from the Start Menu.
SDK Directories
Adaptive Vision Library is distributed as a set of header files (.h), dynamic (.dll) and static (.lib) libraries. The libraries (static and dynamic) are provided in versions for 32-bit and 64-bit system. The header files are common for both versions.
The picture below shows the structure of the directories containing headers and libraries included in Adaptive Vision Library.
![]() |
The directories (installed in the Program Files system folder) being a part of Adaptive Vision Library are shortly described below.
|
Environment and Paths
Adaptive Vision Library uses the environment variable named AVL_PATH48 (48 stands for the 4.8 version) in the building process. The variable points the directory with the headers and libraries needed in the compile time (.h files and AVL.lib ) and in the run time ( AVL.dll ). Its value is typically set to "C:\Program Files (x86)\Adaptive Vision\Adaptive Vision Library 4.8", but it can differ in other systems.
The projects using Adaptive Vision Library should use the value of AVL_PATH48 to resolve the locations of the header files and statically-linked AVL.lib file. Using an environment variable containing path makes the application source code more portable between computers. The AVL_PATH48 path is typically used in the project settings of the compiler (Configuration Properties | C/C++ | General | Additional Include Directories) to find the header files, settings of the linker (Configuration Properties | Linker | General | Additional Library Directories) to find the proper version of the AVL.lib and in the configuration of Post-Build Event (Configuration Properties | Build Events | Post-Build Event | Command Line) to copy the proper version of the AVL.dll file to the output directory of the project. All the settings can be viewed in the simple example applications distributed with Adaptive Vision Library.
Previous: Getting Started | Next: Project Configuration |