You are here: Start » SDK Installation
SDK Installation
Requirements
FabImage Deep Learning is designed to be a part of applications working under control of the Microsoft Windows operating system. Supported versions are: 10 and 11, as well as the corresponding embedded editions.
To build an application using FabImage Deep Learning, Microsoft Visual Studio environment is required. Supported versions are: 2015, 2017 and 2019.
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 FabImage Deep Learning.
After the installation, a license for FabImage 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
FabImage Deep Learning 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 FabImage Deep Learning.
The directories (installed in the Program Files system folder) being a part of FabImage Deep Learning are shortly described below.
|
Library Architecture
FabImage Library is split into four parts:
- FabImage Library - contains all functions for working with images.
- Standard Library - contains all auxiliary functions like: file operations, XML editing or mathematical operations.
- GenICam Library - contains all GenICam and GigEVision functions.
- Third Party Library - contains functions of third-party hardware producers.
The usage of the library is possible only when including one of the following header files:
- FIL.h
- STD.h
- Genicam.h
- ThirdPartySdk.h
Environment and Paths
FabImage Deep Learning uses the environment variable named
FIL_PATH5_5
(5_5 stands for the 5.5 version) in the building process. The variable points the directory with the headers and libraries needed in the compile time (.h files and
FIL.lib
) and in the run time (
FIL.dll
). Its value is typically set to C:\Program Files (x86)\FabImage\FabImage Deep Learning 5.5
, but it can differ in other systems.
The projects using FabImage Deep Learning should use the value of
FIL_PATH5_5
to resolve the locations of the header files and statically-linked
FIL.lib
file. Using an environment variable containing path makes the application source code more portable between computers. The
FIL_PATH5_5
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
FIL.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
FIL.dll
file to the output directory of the project. All the settings can be viewed in the simple example applications distributed with FabImage Deep Learning.