ParagraphNode.InkRecognitionConfidence (Propiedad)
Actualización: noviembre 2007
Obtiene un valor que indica el nivel de confianza que tiene el objeto InkAnalyzer en la precisión del resultado del reconocimiento.
Espacio de nombres: System.Windows.Ink
Ensamblado: IAWinFX (en IAWinFX.dll)
Sintaxis
'Declaración
Public ReadOnly Property InkRecognitionConfidence As InkRecognitionConfidence
'Uso
Dim instance As ParagraphNode
Dim value As InkRecognitionConfidence
value = instance.InkRecognitionConfidence
public InkRecognitionConfidence InkRecognitionConfidence { get; }
public:
property InkRecognitionConfidence InkRecognitionConfidence {
InkRecognitionConfidence get ();
}
/** @property */
public InkRecognitionConfidence get_InkRecognitionConfidence()
public function get InkRecognitionConfidence () : InkRecognitionConfidence
Valor de propiedad
Tipo: System.Windows.Ink.InkRecognitionConfidence
Valor que indica el nivel de confianza que tiene InkAnalyzer en la precisión del resultado del reconocimiento.
Ejemplos
En el ejemplo siguiente, se recorren en bucle todos los objetos ParagraphNode de InkAnalyzer, theInkAnalyzer, y se marcan todos los trazos de los nodos en los que la confianza del reconocimiento no es Strong(), representando esos trazos con un ancho más grueso.
Dim paragraphs As ContextNodeCollection = _
theInkAnalyzer.FindNodesOfType(ContextNodeType.Paragraph)
' Mark each paragraph that is not high confidence as thick.
Dim paragraph As ParagraphNode
For Each paragraph In paragraphs
If paragraph.InkRecognitionConfidence <> InkRecognitionConfidence.Strong Then
Dim stroke As Stroke
For Each stroke In paragraph.Strokes
stroke.DrawingAttributes.Height = 3F
stroke.DrawingAttributes.Width = 3F
Next stroke
End If
Next paragraph
ContextNodeCollection paragraphs =
theInkAnalyzer.FindNodesOfType(ContextNodeType.Paragraph);
// Mark each paragraph that is not high confidence as thick.
foreach (ParagraphNode paragraph in paragraphs)
{
if (paragraph.InkRecognitionConfidence !=
InkRecognitionConfidence.Strong)
{
foreach (Stroke stroke in paragraph.Strokes)
{
stroke.DrawingAttributes.Height = 3f;
stroke.DrawingAttributes.Width = 3f;
}
}
}
Plataformas
Windows Vista
.NET Framework y .NET Compact Framework no admiten todas las versiones de cada plataforma. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.
Información de versión
.NET Framework
Compatible con: 3.0