eyesonit.csharp.sdk
2.2.6
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package eyesonit.csharp.sdk --version 2.2.6
NuGet\Install-Package eyesonit.csharp.sdk -Version 2.2.6
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="eyesonit.csharp.sdk" Version="2.2.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add eyesonit.csharp.sdk --version 2.2.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: eyesonit.csharp.sdk, 2.2.6"
#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.
// Install eyesonit.csharp.sdk as a Cake Addin #addin nuget:?package=eyesonit.csharp.sdk&version=2.2.6 // Install eyesonit.csharp.sdk as a Cake Tool #tool nuget:?package=eyesonit.csharp.sdk&version=2.2.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EyesOnIt - Large Vision Model for Advanced Computer Vision
EyesOnIt brings the power of Large Vision Models to computer programmers without computer vision or data science skills. This SDK allows EyesOnIt to be easily integrated with other products or projects.
User Guide
To get a free developer license and download EyesOnIt, refer to the EyesOnIt User Guide here.
Sample Code
// initialize the EyesOnIt SDK
EyesOnIt eyesOnItSDK = new EyesOnIt("http://192.168.1.11:8000");
// Define the video stream to process
EOIAddStreamInputs addStreamInputs = new EOIAddStreamInputs()
{
StreamUrl = "rtsp://192.168.1.54/live0", // specify the stream RTSP URL
Name = "Street Camera", // provide a friendly name for the stream
Regions = new EOIRegion[] // specify the area in the frame to process
{
new EOIRegion(435, 388, 600, 224)
},
ObjectDescriptions = new EOIObjectDescription[] // provide the descriptions of objects to detect
{
new EOIObjectDescription("vehicle", false) { Threshold = 90 },
new EOIObjectDescription("landscape", true)
},
ObjectSize = 250, // provide the estimated object size in pixels
Alerting = new EOIAlerting() // provide the alerting settings
{
AlertSecondsCount = 0.4,
ResetSecondsCount = 2,
PhoneNumber = "+11234567890",
ImageNotification = true
}
};
// Add the stream to EyesOnIt
EOIResponse response = await eyesOnItSDK.AddStream(addStreamInputs); // add the stream and await the response
if (response.Success)
{
// Monitor the stream
await eyesOnItSDK.MonitorStream(addStreamInputs.StreamUrl, null); // AddStream succeeded. Monitor the stream.
}
Demo
The free interactive online demo is available here.
Questions
Please email us at support@eyesonit.us if you have questions
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net48 is compatible. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.8
- Serilog (>= 3.1.1)
- Serilog.Enrichers.Environment (>= 2.3.0)
- Serilog.Enrichers.Thread (>= 3.1.0)
- Serilog.Enrichers.WithCaller (>= 1.2.0)
- Serilog.Sinks.File (>= 5.0.0)
- System.Text.Json (>= 8.0.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version 2.2.6 release - updated tags