SEYR 1.3.30

dotnet add package SEYR --version 1.3.30
NuGet\Install-Package SEYR -Version 1.3.30
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="SEYR" Version="1.3.30" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SEYR --version 1.3.30
#r "nuget: SEYR, 1.3.30"
#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 SEYR as a Cake Addin
#addin nuget:?package=SEYR&version=1.3.30

// Install SEYR as a Cake Tool
#tool nuget:?package=SEYR&version=1.3.30

SEYR Nuget

AOI for present / not-present analysis

User Guide

SEYRscoring

How to integrate SEYR into an existing .NET Framework project

Create an instance of a SEYR channel

private static SEYR.Session.Channel SEYRCh = null;

private void openDirectoryToolStripMenuItem_Click(object sender, EventArgs e)
{
    SEYR.Session.Channel channel = SEYR.Session.Channel.OpenSEYR();
    if (channel != null) 
    {
        SEYRCh = channel;
        SEYRCh.SetPixelsPerMicron(1.303f);
    }
}

Add some UI elements

private void openComposerToolStripMenuItem_Click(object sender, EventArgs e)
{
    SEYRCh.OpenComposer(LastImage);
}

private async void forcePatternToolStripMenuItem_Click(object sender, EventArgs e)
{
    await SEYRCh.NewImage(LastImage, true, "");
}

private async void reloadImageToolStripMenuItem_Click(object sender, EventArgs e)
{
    await SEYRCh.NewImage(LastImage, false, "");
}

Send images to SEYR

private async Task<bool> Run()
{
    if (SEYRCh == null) return false;
    SEYRCh.ResetAll();

    for (int i = 0; i < Points.Count; i++)
    {
        ///Do something
        double info = await SEYRCh.NewImage(LastImage, false, $"{i}\t{Points[i].X}\t{Points[i].Y}\t{Points[i].Info}");
        GC.Collect();
    }
    
    SEYRCh.MakeArchive();
    SEYRCh.SignalComplete();

    bool test = true;
    return test;
}
Notes
  • Image processing must either be awaited or contain a while loop that waits until Channel.Working == false.
  • Stamp inspection can be activated by passing true for stamp in SEYRCh.NewImage
  • Set stamp inspection params with SEYRCh.InputParameters(bmp)
Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  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
1.3.30 264 6/6/2023
1.3.29 199 5/22/2023
1.3.28 187 5/22/2023
1.3.27 471 8/10/2022
1.3.26 425 8/3/2022
1.3.25 447 7/8/2022
1.3.24 490 7/6/2022
1.3.23 447 6/30/2022
1.3.22 468 6/29/2022
1.3.21 464 6/29/2022
1.3.20 444 6/17/2022
1.3.19 428 6/15/2022
1.3.18 429 6/14/2022
1.3.17 467 6/6/2022
1.3.16 450 6/3/2022
1.3.15 433 6/3/2022
1.3.14 459 5/31/2022
1.3.13 475 5/20/2022
1.3.12 446 5/17/2022
1.3.11 453 5/13/2022
1.3.10 437 5/13/2022
1.3.9 438 5/13/2022
1.3.8 444 5/4/2022
1.3.6 433 4/26/2022
1.3.5 466 4/26/2022
1.3.4 446 4/25/2022
1.3.1 457 4/20/2022
1.3.0 464 4/18/2022
1.2.3 443 3/30/2022
1.2.2 448 3/30/2022
1.2.1 506 1/12/2022
1.2.0 365 11/15/2021
1.1.1 368 10/8/2021
1.1.0 386 10/8/2021
1.0.14 375 10/7/2021
1.0.13 348 10/7/2021
1.0.12 346 10/7/2021
1.0.11 367 10/7/2021
1.0.10 340 10/6/2021
1.0.9 374 10/6/2021
1.0.8 384 10/6/2021
1.0.7 353 10/6/2021
1.0.6 477 10/4/2021
1.0.5 488 10/4/2021
1.0.4 379 10/1/2021
1.0.3 390 10/1/2021
1.0.2 346 9/30/2021
1.0.1 382 9/29/2021
1.0.0 412 9/28/2021

- add chroma (entropy balance color)
- composer tool to toggle use of pattern
- save/load pattern wizard window state
- multiselect context menu for features
- update feature clone function
- add feature data visualization in viewer
- add score to feature selector panel