OPCFoundation.NetStandard.Opc.Ua.Vision.Client 2.0.0-preview.4

Prefix Reserved
This is a prerelease version of OPCFoundation.NetStandard.Opc.Ua.Vision.Client.
dotnet add package OPCFoundation.NetStandard.Opc.Ua.Vision.Client --version 2.0.0-preview.4
                    
NuGet\Install-Package OPCFoundation.NetStandard.Opc.Ua.Vision.Client -Version 2.0.0-preview.4
                    
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="OPCFoundation.NetStandard.Opc.Ua.Vision.Client" Version="2.0.0-preview.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OPCFoundation.NetStandard.Opc.Ua.Vision.Client" Version="2.0.0-preview.4" />
                    
Directory.Packages.props
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Vision.Client" />
                    
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 OPCFoundation.NetStandard.Opc.Ua.Vision.Client --version 2.0.0-preview.4
                    
#r "nuget: OPCFoundation.NetStandard.Opc.Ua.Vision.Client, 2.0.0-preview.4"
                    
#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 OPCFoundation.NetStandard.Opc.Ua.Vision.Client@2.0.0-preview.4
                    
#: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=OPCFoundation.NetStandard.Opc.Ua.Vision.Client&version=2.0.0-preview.4&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=OPCFoundation.NetStandard.Opc.Ua.Vision.Client&version=2.0.0-preview.4&prerelease
                    
Install as a Cake Tool

Opc.Ua.Vision.Client

Client-side helpers for the OPC UA — Vision companion model (working-group draft).

Built on Opc.Ua.Vision and Opc.Ua.Client, this package exposes a high-level surface over the source-generated proxies so a client can drive a Vision server without knowing NodeIds or BrowseNames:

  • VisionClient — resolves the well-known Vision object (§4.2) and enumerates sensors, inference pipelines, and coordinate frames;
  • VisionSensorClient — reads a sensor's identity, imaging members, optics, illumination, mounted frame and calibrations (intrinsic and hand-eye extrinsic);
  • VisionFrameGraph — walks the CoordinateFrameType tree and composes transforms between any two named frames (camera → flange → base, camera → flange → tool centre point). Follows the §5.12 conventions exactly — right-handed frames, quaternion order (x, y, z, w), corner-datum principal point, and refuses a non-unit quaternion within tolerance 1e-6;
  • VisionMediaClientGetClip by reference (default), inline LatestClip/LatestClipMetadata, and honest surfacing of the §6.4 case where inline delivery is disabled (Bad_NotSupported);
  • VisionPipelineClientRunInference, StartContinuous, Stop, and reading pipeline members including the deployment inference location;
  • VisionResultReader — reads DetectionResultType, InspectionResultType, SegmentationResultType and streams result changes over an IStreamingSubscription;
  • VisionFeedbackClientSubmitDetections, SubmitInspectionResult, SubmitCorrection, SubmitImageReference, the headline path for an off-server vision-language model publishing results the Server did not compute;
  • AddVisionClient() — DI registration for IOpcUaClientBuilder;
  • session.Vision(telemetry) — non-DI extension for creating a client over any connected ISession.

Example

using Opc.Ua.Client;
using Opc.Ua.Vision;
using Opc.Ua.Vision.Client;

// From any connected session:
VisionClient vision = session.Vision(telemetry);
if (!vision.IsVisionNamespaceAvailable)
{
    return; // Server does not implement Vision.
}

await foreach (VisionNodeEntry sensor in vision.EnumerateSensorsAsync(ct))
{
    VisionSensorClient s = vision.Sensor(sensor.NodeId);
    VisionSensorIdentity identity = await s.ReadIdentityAsync(ct);
    // Read intrinsic / hand-eye calibrations, media endpoints, etc.
}

// Read the latest detection result for a pipeline, then compose the
// first detection's pose from the camera frame into the world frame.
VisionFrameGraph frames = vision.Frames();
VisionDetectionResultSnapshot det =
    await vision.Result(resultNodeId).ReadDetectionAsync(ct);
if (det.Detections.Count > 0 && det.Detections[0].HasPose)
{
    VisionPose3DDataType inWorld = await frames.ComposeAsync(
        det.Detections[0].Pose, cameraFrameNodeId, worldFrameNodeId, ct);
}

See the Vision developer guide for discovery, streaming, feedback and the frame-graph composition example.

The namespace http://opcfoundation.org/UA/Vision/ and every NodeId in it are provisional. The model is a working-group draft.

Package Adds
OPCFoundation.NetStandard.Opc.Ua.Vision Source-generated Vision model (required)
OPCFoundation.NetStandard.Opc.Ua.Vision.Server Hosting a Vision server
OPCFoundation.NetStandard.Opc.Ua.Mcp.Vision MCP tools that let a language model use VisionClient from an agent

License

OPC Foundation MIT License 1.00 — http://opcfoundation.org/License/MIT/1.00/

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 is compatible.  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 is compatible.  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 is compatible.  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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net472 is compatible.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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 (2)

Showing the top 2 NuGet packages that depend on OPCFoundation.NetStandard.Opc.Ua.Vision.Client:

Package Downloads
OPCFoundation.NetStandard.Opc.Ua.Mcp.Robotics

OPC UA MCP tools for Robot Intent: discover, monitor, command, and submit missions to Robotics controllers. Embed in any MCP server host.

OPCFoundation.NetStandard.Opc.Ua.Mcp.Vision

OPC UA MCP tools for Vision: let a language model see through an OPC UA Vision server and act on what it sees. Discovery, image-content capture, inference, off-server perception feedback, and frame-graph composition. Embed in any MCP server host.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.0-preview.4 44 9/2/2026