![]() |
VOOZH | about |
dotnet add package SEYR --version 1.3.31
NuGet\Install-Package SEYR -Version 1.3.31
<PackageReference Include="SEYR" Version="1.3.31" />
<PackageVersion Include="SEYR" Version="1.3.31" />Directory.Packages.props
<PackageReference Include="SEYR" />Project file
paket add SEYR --version 1.3.31
#r "nuget: SEYR, 1.3.31"
#:package SEYR@1.3.31
#addin nuget:?package=SEYR&version=1.3.31Install as a Cake Addin
#tool nuget:?package=SEYR&version=1.3.31Install as a Cake Tool
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;
}
true for stamp in SEYRCh.NewImageSEYRCh.InputParameters(bmp)| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net472 net472 is compatible. net48 net48 was computed. net481 net481 was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.3.31 | 344 | 12/10/2024 |
| 1.3.30 | 464 | 6/6/2023 |
| 1.3.29 | 378 | 5/22/2023 |
| 1.3.28 | 369 | 5/22/2023 |
| 1.3.27 | 688 | 8/10/2022 |
| 1.3.26 | 642 | 8/3/2022 |
| 1.3.25 | 668 | 7/8/2022 |
| 1.3.24 | 699 | 7/6/2022 |
| 1.3.23 | 656 | 6/30/2022 |
| 1.3.22 | 673 | 6/29/2022 |
| 1.3.21 | 692 | 6/29/2022 |
| 1.3.20 | 649 | 6/17/2022 |
| 1.3.19 | 631 | 6/15/2022 |
| 1.3.18 | 638 | 6/14/2022 |
| 1.3.17 | 693 | 6/6/2022 |
| 1.3.16 | 654 | 6/3/2022 |
| 1.3.15 | 642 | 6/3/2022 |
| 1.3.14 | 681 | 5/31/2022 |
| 1.3.13 | 686 | 5/20/2022 |
| 1.3.12 | 651 | 5/17/2022 |
- 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