- 10 Apr 2025
- 3 Minutes to read
- Print
- DarkLight
- PDF
Sample code for VizionSDK
- Updated on 10 Apr 2025
- 3 Minutes to read
- Print
- DarkLight
- PDF
Introduction
This article will explain how to build the sample code for VizionSDK.
You can download the Sample code here.
Prerequisites
Before building and running this project, ensure you have the following installed.
CMake (version 3.0 or newer)
Windows
You can download the latest CMake installer from the official CMake website and follow the installation instructions provided.
Ensure that CMake is added to your system
PATH
during installation to enable command-line usage.
Linux
On Debian-based systems (e.g., Ubuntu), you can install CMake using apt:
sudo apt update sudo apt install cmake
If sudo apt install cmake is not available. You can manually download and install CMake from the official website:
If you're working with NXP, Nvidia, or TI platforms look for the Linux aarch64 binary distribution. Download the appropriate tar.gz file for your platform.
Extract the download file:
tar -zxvf cmake-[version]-linux-aarch64.tar.gz
Move the extracted directory:
Move the extracted files to a directory like
/opt
for easier management:sudo mv cmake-[version]-linux-aarch64 /opt/cmake
Update the
PATH
environment variable:Add CMake to your system
PATH
by modifying your~/.bashrc
or~/.profile
file:export PATH=/opt/cmake/bin:$PATH
Save the file and reload your profile with
source ~/.profile
C++ compiler (supporting C++11 standard)
Windows
For Windows, you might need to install a C++ compiler separately. You can use Microsoft Visual Studio, which includes the MSVC compiler.
When installing Visual Studio, make sure to select the "Desktop development with C++" workload during the installation process. This will include the necessary C++ compiler, nmake, and other essential tools for C++ development on Windows.
Alternatively, you can use MinGW, a port of the GNU Compiler Collection (GCC), which provides a C++ compiler for Windows.
Linux
Most Linux distributions come with a C++ compiler pre-installed. However, if it's not available, you can install it using your package manager.
On Debian-based systems (e.g., Ubuntu), you can install the GNU Compiler Collection (GCC) using apt:
sudo apt update sudo apt install build-essential
Embedded systems:
Embedded systems typically do not require a compiler. Development is done using cross-compilation on a host machine, and the resulting binaries are deployed to the embedded device.
Building
Windows
Open Command Prompt or PowerShell.
Navigate to the Samples directory of the project:
Create a build directory:
mkdir build && cd build
Generate build files using CMake:
cmake ..
Build the project using the generated build files:
cmake --build . --config Release
Linux
CMakeLists.txt Configuration
In this project, we use library from the installation way for example. If you like to use VizionSDK in the local folder(
../Downloads/libVizionSDK-{os}-{version}/lib
), please make sure the CMakeLists.txt is correct.Link the Installation library (default):
find_package(vizionsdk REQUIRED) # Include directories target_include_directories(VizionSample PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src ) # Link libraries target_link_libraries(VizionSample PRIVATE vizionsdk::VizionSDK )
Link the Local library:
Link the library which is located in the local folder../Downloads/libVizionSDK-{os}-{version}/lib
.# Set path to the SDK library directory # NOTE: Update this path to match your SDK location target_link_directories(VizionSample PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../Downloads/libVizionSDK-{os}-{version}/lib ) # Link libraries target_link_libraries(VizionSample PRIVATE VizionSDK )
Building with cmake
Open Terminal.
Navigate to the Samples directory of the project:
Create a build directory:
mkdir build && cd build
Generate build files using CMake:
cmake ..
Build the project using the generated build files:
make
Running
Windows
After successful building, you will find the executable
VizionSample.exe
in the build directory. You can run it from the command line or by double-clicking on it in the File Explorer.
Linux
After successful building, you will find the executable
VizionSample
in the build directory. You can run it from the terminal by executing./VizionSample
.
Example
For this section, we will introduce some functions from VizionSDK in this sample.
List Devices
Use VxDiscoverCameraDevices
function to discover the devices and display the device name.
std::vector<std::string> devList;
int deviceCount = VxDiscoverCameraDevices(devList);
if (deviceCount == 0) {
std::cout << "No cameras found" << std::endl;
return -1;
}
std::cout << "Found " << deviceCount << " camera(s):" << std::endl;
for (size_t i = 0; i < devList.size(); i++) {
std::cout << "[" << i << "] " << devList[i] << std::endl;
}
Open Device
Intial the camera device from the device list which is discovered from the VxDiscoverCameraDevices
cam = VxInitialCameraDevice(deviceIndex);
if (!cam || VxOpen(cam) != 0) {
std::cout << "Failed to initialize/open camera" << std::endl;
return -1;
}
std::cout << "Device opened successfully" << std::endl;
return 0;
Show the device information
Get the device name and HardwareID from the device.
std::string deviceName;
if (VxGetDeviceName(cam, deviceName) == 0) {
std::cout << "Device name: " << deviceName << std::endl;
}
std::string hwId;
if (VxGetHardwareID(cam, hwId) == 0) {
std::cout << "Hardware ID: " << hwId << std::endl;
}