IPLab.Core
1.0.0-alpha.4
This is a prerelease version of IPLab.Core.
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package IPLab.Core --version 1.0.0-alpha.4
NuGet\Install-Package IPLab.Core -Version 1.0.0-alpha.4
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="IPLab.Core" Version="1.0.0-alpha.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IPLab.Core" Version="1.0.0-alpha.4" />
<PackageReference Include="IPLab.Core" />
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 IPLab.Core --version 1.0.0-alpha.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: IPLab.Core, 1.0.0-alpha.4"
#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.
#:package IPLab.Core@1.0.0-alpha.4
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=IPLab.Core&version=1.0.0-alpha.4&prerelease
#tool nuget:?package=IPLab.Core&version=1.0.0-alpha.4&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
IPLab.Core
The core library for IPLab — a C# image-processing pipeline engine built on OpenCvSharp4.
It provides:
- Built-in image-processing operators (load, blur, threshold, detect circles, find contours, etc.)
- A flow data model (
FlowDef) for defining operator graphs as JSON - A runtime executor (
FlowEx) that resolves dependencies, runs operators in topological order, and stores intermediate results
Install
dotnet add package IPLab.Core
Quick start
using IPLab.Core;
// Load a saved flow from JSON
var flow = FlowDefSerializer.Deserialize(File.ReadAllText("my-flow.ipl"));
// Execute it
var executor = new FlowEx(flow);
await executor.RunAllAsync(CancellationToken.None);
// Read a result
var image = executor.IntermediateResults["O1"]["Image"] as Mat;
Building flows in code
See scripts/Waviness/ for a complete example: it defines and runs an IPLab flow entirely from C# code, executes it via FlowEx, and reads the intermediate results.
Built-in operators
| Category | Operators |
|---|---|
| I/O | LoadImage, SaveImage |
| Color | ConvertToGrayscale, SplitChannels, InvertImage |
| Filters | Threshold, HistogramEqualization, GaussianBlur, Morphology, Thinning, Bitwise |
| Visualization | DrawHistogram |
| Detection | DetectCircles, DetectSimpleBlobs, ConnectedComponents, FindContours, FindStripeEdges |
| Scripting | CSharpScript |
Full documentation: docs/OPERATORS.md
Dependencies
- OpenCvSharp4.Windows — OpenCV bindings for .NET
- NetTopologySuite — geometry primitives
- Microsoft.CodeAnalysis.CSharp.Scripting — Roslyn scripting for the CSharpScript operator
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Microsoft.CodeAnalysis.CSharp.Scripting (>= 5.3.0)
- NetTopologySuite (>= 2.6.0)
- OpenCvSharp4.Windows (>= 4.13.0.20260302)
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.0.0-alpha.21 | 40 | 9/14/2026 |
| 1.0.0-alpha.20 | 60 | 8/31/2026 |
| 1.0.0-alpha.19 | 54 | 8/27/2026 |
| 1.0.0-alpha.18 | 49 | 8/27/2026 |
| 1.0.0-alpha.17 | 57 | 8/20/2026 |
| 1.0.0-alpha.16 | 64 | 8/18/2026 |
| 1.0.0-alpha.15 | 65 | 8/2/2026 |
| 1.0.0-alpha.14 | 64 | 6/28/2026 |
| 1.0.0-alpha.13 | 77 | 6/24/2026 |
| 1.0.0-alpha.12 | 75 | 6/24/2026 |
| 1.0.0-alpha.11 | 66 | 6/23/2026 |
| 1.0.0-alpha.10 | 67 | 6/23/2026 |
| 1.0.0-alpha.9 | 65 | 6/23/2026 |
| 1.0.0-alpha.8 | 1,972 | 6/16/2026 |
| 1.0.0-alpha.7 | 62 | 6/11/2026 |
| 1.0.0-alpha.6 | 63 | 6/10/2026 |
| 1.0.0-alpha.5 | 60 | 6/10/2026 |
| 1.0.0-alpha.4 | 61 | 6/10/2026 |
| 1.0.0-alpha.3 | 65 | 6/9/2026 |
| 1.0.0-alpha.2 | 56 | 6/9/2026 |
Loading failed