Method GetConfidence
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
GetConfidence(string)
Confidence for a field at path (0..1). Returns null
if not tracked or cannot be resolved.
public float? GetConfidence(string nameOrPath)
Parameters
nameOrPath
stringExact path or unique field name.
Returns
- float?
A value in [0..1] if available; otherwise
null
.
Examples
var c = result.GetConfidence("Lines[0].Price");
Console.WriteLine(c);