VmbNET.linux-arm64
1.3.2
dotnet add package VmbNET.linux-arm64 --version 1.3.2
NuGet\Install-Package VmbNET.linux-arm64 -Version 1.3.2
<PackageReference Include="VmbNET.linux-arm64" Version="1.3.2" />
<PackageVersion Include="VmbNET.linux-arm64" Version="1.3.2" />
<PackageReference Include="VmbNET.linux-arm64" />
paket add VmbNET.linux-arm64 --version 1.3.2
#r "nuget: VmbNET.linux-arm64, 1.3.2"
#:package VmbNET.linux-arm64@1.3.2
#addin nuget:?package=VmbNET.linux-arm64&version=1.3.2
#tool nuget:?package=VmbNET.linux-arm64&version=1.3.2
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,
- Open the NuGet Package Manager for the project by right-clicking it in Solution Explorer
and selecting
Manage NuGet Packages.... - Click the cog wheel after
Package source:to open the package sources, and click the+icon. TheName:field can be whatever you like, but you will need it just now. - Enter into the
Source:field either- 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
- the path to the directory containing the VmbNET NuGet package file.
- Close this window to return to the NuGet Package Manager.
- Open the drop-down menu after
Package source:and either selectAllor theName:field value that you used when adding the package source for VmbNET. - Select the
Browsetab and search forVmbNET. Click the VmbNET NuGet package that is displayed. - In the pane that appears, click
Installto 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
.nupkgfile 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,
- Open the Extension Manager by clicking
Extensionsin the menu and selectingManage Extensions.... - Select the
Browsetab. - Start typing
Feature Completionin the search field. - Once the
Feature Completionitem (with the Allied Vision logo) appears, select it and click itsInstallbutton. - 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 | Versions 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. |
-
.NETStandard 2.0
- Microsoft.CSharp (>= 4.7.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.