VmbNET.linux-x64 1.3.2

dotnet add package VmbNET.linux-x64 --version 1.3.2
                    
NuGet\Install-Package VmbNET.linux-x64 -Version 1.3.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="VmbNET.linux-x64" Version="1.3.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="VmbNET.linux-x64" Version="1.3.2" />
                    
Directory.Packages.props
<PackageReference Include="VmbNET.linux-x64" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add VmbNET.linux-x64 --version 1.3.2
                    
#r "nuget: VmbNET.linux-x64, 1.3.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package VmbNET.linux-x64@1.3.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=VmbNET.linux-x64&version=1.3.2
                    
Install as a Cake Addin
#tool nuget:?package=VmbNET.linux-x64&version=1.3.2
                    
Install as a Cake Tool

VmbNET

The .NET API of the Vimba X SDK.

Vimba X is a fully GenICam compliant SDK and the successor of Vimba. VmbNET is the .NET API that is provided by this SDK. It provides access to the full functionality of Vimba X from .NET applications.

VmbNET can be used on Windows64, Linux64 and Linux ARM.

Installation of VmbNET

Requirements

To use VmbNET, a .NET runtime providing .NET Standard 2.0 is required. These are .NET Framework 4.6.2 or above and .NET Core 2.0 or above.

Installation with Visual Studio (Windows64 only)

After opening your application's project file with Visual Studio 2019 or Visual Studio 2022,

  1. Open the NuGet Package Manager for the project by right-clicking it in Solution Explorer and selecting Manage NuGet Packages....
  2. Click the cog wheel after Package source: to open the package sources, and click the + icon. The Name: field can be whatever you like, but you will need it just now.
  3. Enter into the Source: field either
    1. the following URL for the online NuGet packages: https://api.nuget.org/v3/index.json (if not already available by default) if installing from nuget.org or
    2. the path to the directory containing the VmbNET NuGet package file.
  4. Close this window to return to the NuGet Package Manager.
  5. Open the drop-down menu after Package source: and either select All or the Name: field value that you used when adding the package source for VmbNET.
  6. Select the Browse tab and search for VmbNET. Click the VmbNET NuGet package that is displayed.
  7. In the pane that appears, click Install to install the version shown.

Installation from the command line

  • Add to the package source either the URL for the online NuGet packages (if not already available by default) or the full path to the directory containing the .nupkg file by executing
    dotnet nuget add source <https://api.nuget.org/v3/index.json-or-path-to-directory-containing-VmbNET-NuGet-package> -n <user-chosen-name-for-the-package-source>
  • Install VmbNET to your application by changing directory to the location of your project file and executing
    dotnet add package VmbNET.<runtime-identifier>

where <runtime-identifier> is either win-64, linux-x64 or linux-arm64, depending on the platform that your application should be built for.

  • Then build your application by executing, in the same directory,
    dotnet build -c Release .

Usage

Below is a minimal example demonstrating how to acquire frames for 2 seconds from the stream of the first camera found by VmbNET. It highlights the general usage of VmbNET. More complete code examples can be found in the Examples directory provided by the Vimba X installation.

   using VmbNET;

   class Program
   {
       static void Main()
       {
           using var vmb = IVmbSystem.Startup(); // API startup (loads transport layers)

           var cam = vmb.GetCameras()[0]; // Get the first available camera

           using var openCam = cam.Open(); // Open the camera

           openCam.Features.ExposureTime = 5000.0; // Set the exposure time value

           // Register an event handler for incoming frames
           openCam.FrameReceived += (s,e) =>
           {
               using var frame = e.Frame;
               Console.WriteLine($"Frame Received! ID={frame.Id}");
           }; // IDisposable: Frame is automatically requeued

           // Convenience function to start acquisition
           using var acquisition = openCam.StartFrameAcquisition();

           Thread.Sleep(2000);

       } // IDisposable: Stops acquisition, closes camera, shuts down Vimba X
   }

Installation of the Feature Completion Extension for Visual Studio (Windows64 only)

The Feature Completion Extension assists with the development of applications using VmbNET in Visual Studio 2022 by providing Intellisense-like code completion for camera features, as well as information about each feature, based on the Standard Feature Naming Convention (SFNC) provided by GenICam. This extension is provided both on the Visual Studio Marketplace (see https://marketplace.visualstudio.com/items?itemName=AlliedVision.FeatureCompletion) and as part of the Vimba X installation (as a file named FeatureCompletion.vsix).

Installation with Visual Studio

After opening Visual Studio 2022,

  1. Open the Extension Manager by clicking Extensions in the menu and selecting Manage Extensions....
  2. Select the Browse tab.
  3. Start typing Feature Completion in the search field.
  4. Once the Feature Completion item (with the Allied Vision logo) appears, select it and click its Install button.
  5. Follow the instructions to complete the installation.

Installation from the file

Doubl-click the FeatureCompletion.vsix in Windows Explorer and follow the instructions to complete the installation.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.3.2 211 3/9/2026
1.3.1 428 11/11/2025
1.2.0 272 6/24/2025