eyesonit.csharp.sdk 2.2.6

There is a newer version of this package available.
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                
#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                

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 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.

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
3.0.0 0 9/24/2024
2.2.6 87 7/16/2024
2.2.5 69 7/15/2024
2.2.4 72 7/15/2024

Version 2.2.6 release - updated tags