ParagraphNode.InkRecognitionConfidence 属性
获取一个值,该值指示 InkAnalyzer 对于识别结果准确度的置信级别。
命名空间: System.Windows.Ink
程序集: IAWinFX(在 IAWinFX.dll 中)
声明
Public ReadOnly Property InkRecognitionConfidence As InkRecognitionConfidence
用法
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
类型:System.Windows.Ink.InkRecognitionConfidence
一个值,指示 InkAnalyzer 对于识别结果准确度的置信级别。
下面的示例从 InkAnalyzer (theInkAnalyzer) 遍历所有 ParagraphNode 对象,并通过为笔画设置更大的宽度来标记来自识别置信级别不是 Strong() 的节点的所有笔画。
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;
}
}
}
Windows Vista
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
受以下版本支持:3.0