IPLab.Core 1.0.0-alpha.21

This is a prerelease version of IPLab.Core.
dotnet add package IPLab.Core --version 1.0.0-alpha.21
                    
NuGet\Install-Package IPLab.Core -Version 1.0.0-alpha.21
                    
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.21" />
                    
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.21" />
                    
Directory.Packages.props
<PackageReference Include="IPLab.Core" />
                    
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 IPLab.Core --version 1.0.0-alpha.21
                    
#r "nuget: IPLab.Core, 1.0.0-alpha.21"
                    
#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.21
                    
#: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.21&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=IPLab.Core&version=1.0.0-alpha.21&prerelease
                    
Install as a Cake Tool

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, DistanceTransform
Tools DrawHistogram, Sharpness
Detection DetectCircles, DetectSimpleBlobs, ConnectedComponents, FindContours, FindStripeEdges, DetectLinearEdge, CircleFit, TemplateMatch, Watershed
Flow LoopStart, LoopEnd
Scripting CSharpScript

Full documentation: docs/OPERATORS.md

Dependencies

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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. 
.NET Framework net48 is compatible.  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.0.0-alpha.21 32 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