SEYR 1.3.31

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

SEYR Nuget

AOI for present / not-present analysis

User Guide

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.31 136 12/10/2024
1.3.30 326 6/6/2023
1.3.29 242 5/22/2023
1.3.28 226 5/22/2023
1.3.27 530 8/10/2022
1.3.26 484 8/3/2022
1.3.25 502 7/8/2022
1.3.24 549 7/6/2022
1.3.23 503 6/30/2022
1.3.22 524 6/29/2022
1.3.21 527 6/29/2022
1.3.20 501 6/17/2022
1.3.19 483 6/15/2022
1.3.18 486 6/14/2022
1.3.17 526 6/6/2022
1.3.16 506 6/3/2022
1.3.15 485 6/3/2022
1.3.14 518 5/31/2022
1.3.13 533 5/20/2022
1.3.12 498 5/17/2022
1.3.11 511 5/13/2022
1.3.10 503 5/13/2022
1.3.9 493 5/13/2022
1.3.8 529 5/4/2022
1.3.6 489 4/26/2022
1.3.5 526 4/26/2022
1.3.4 499 4/25/2022
1.3.1 516 4/20/2022
1.3.0 520 4/18/2022
1.2.3 510 3/30/2022
1.2.2 503 3/30/2022
1.2.1 569 1/12/2022
1.2.0 426 11/15/2021
1.1.1 432 10/8/2021
1.1.0 451 10/8/2021
1.0.14 439 10/7/2021
1.0.13 408 10/7/2021
1.0.12 411 10/7/2021
1.0.11 434 10/7/2021
1.0.10 406 10/6/2021
1.0.9 473 10/6/2021
1.0.8 447 10/6/2021
1.0.7 420 10/6/2021
1.0.6 572 10/4/2021
1.0.5 598 10/4/2021
1.0.4 445 10/1/2021
1.0.3 453 10/1/2021
1.0.2 433 9/30/2021
1.0.1 473 9/29/2021
1.0.0 477 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