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 276 6/6/2023
1.3.29 203 5/22/2023
1.3.28 190 5/22/2023
1.3.27 474 8/10/2022
1.3.26 426 8/3/2022
1.3.25 449 7/8/2022
1.3.24 492 7/6/2022
1.3.23 449 6/30/2022
1.3.22 469 6/29/2022
1.3.21 465 6/29/2022
1.3.20 445 6/17/2022
1.3.19 429 6/15/2022
1.3.18 430 6/14/2022
1.3.17 468 6/6/2022
1.3.16 451 6/3/2022
1.3.15 434 6/3/2022
1.3.14 461 5/31/2022
1.3.13 477 5/20/2022
1.3.12 447 5/17/2022
1.3.11 454 5/13/2022
1.3.10 438 5/13/2022
1.3.9 439 5/13/2022
1.3.8 445 5/4/2022
1.3.6 434 4/26/2022
1.3.5 467 4/26/2022
1.3.4 447 4/25/2022
1.3.1 459 4/20/2022
1.3.0 465 4/18/2022
1.2.3 445 3/30/2022
1.2.2 449 3/30/2022
1.2.1 509 1/12/2022
1.2.0 366 11/15/2021
1.1.1 371 10/8/2021
1.1.0 388 10/8/2021
1.0.14 377 10/7/2021
1.0.13 349 10/7/2021
1.0.12 347 10/7/2021
1.0.11 368 10/7/2021
1.0.10 341 10/6/2021
1.0.9 375 10/6/2021
1.0.8 385 10/6/2021
1.0.7 355 10/6/2021
1.0.6 479 10/4/2021
1.0.5 490 10/4/2021
1.0.4 380 10/1/2021
1.0.3 391 10/1/2021
1.0.2 347 9/30/2021
1.0.1 383 9/29/2021
1.0.0 413 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