Building an RTX64 Vision Application

Follow the steps below to build an RTX64 Vision application.

Steps:

  1. Create a new RTSS Application project in Visual Studio using the RTX64 Visual Studio Project Wizard.
  2. Add #include <RtGVApi.h> to the project’s header file, after the <Rtapi.h>, RtnApi.h and <Rtssapi.h> inclusions
  3. Open the Project Properties.
  4. Under C/C++ > General, add $(RtVisionDir)include; to Additional Include Directories.
  5. Under Linker > General, add $(RtVisionDir)lib; to Additional Library Directories.
  6. Under Linker > Input, add RtGigEVision.lib; to Additional Dependencies.
  7. Under Linker > System, set Stack Reserve Size and Stack Commit Size to 10000000.
  8. Add your desired source code to the application.
  9. Build the application in the RTSSDebug or RTSSRelease configuration.

Related Topics: