Building an RTX64 Vision Application
Follow the steps below to build an RTX64 Vision application.
Steps:
- Create a new RTSS Application project in Visual Studio using the RTX64 Visual Studio Project Wizard.
- Add
#include <RtGVApi.h>
to the project’s header file, after the<Rtapi.h>
,RtnApi.h
and<Rtssapi.h>
inclusions - Open the Project Properties.
- Under C/C++ > General, add
$(RtVisionDir)include;
to Additional Include Directories. - Under Linker > General, add
$(RtVisionDir)lib;
to Additional Library Directories. - Under Linker > Input, add
RtGigEVision.lib;
to Additional Dependencies. - Under Linker > System, set Stack Reserve Size and Stack Commit Size to 10000000.
- Add your desired source code to the application.
- Build the application in the RTSSDebug or RTSSRelease configuration.