Skip to main content

Configuration & Usage


Configuration Setup

After installation, the configuration file VxConfig.conf and VxExposure.yaml will be located at:

  • Windows:

    {your_dotnet_project}\bin\{project_build_type}\{dotnet_version}\VxConfig.conf
    {your_dotnet_project}\bin\{project_build_type}\{dotnet_version}\VxExposure.yaml

This configuration file allows CSVizionSDK to recognize TechNexion series camera devices.

tip

You can also customize the location of VxConfig.conf and VxExposure.yaml by setting the VIZIONSDK_CONFIG_PATH environment variable.


Usage

After installing the CSVizionSDK NuGet package, you can access all public APIs under the following namespace and test if the installation is successful:

using VizionSDKSharp;

class Program
{
static void Main()
{
// Test the library import
CSVizionSDK.HelloVizionSDK();
// Output:
// Hello VizionSDK!
// Version: {VizionSDK Version}
}
}

For more detailed information and advanced usage, please refer to the API documentation or the examples on GitHub.