InkRecognitionResult

Handwriting recognition result (InkRecognitionResult class)

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
boundingRect object
textCandidates array Recognized text alternatives ranked by confidence
selectedTextIndex integer Index of the selected candidate
strokeIds array IDs of strokes that produced this result
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-inkrecognitionresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InkRecognitionResult",
  "title": "InkRecognitionResult",
  "type": "object",
  "description": "Handwriting recognition result (InkRecognitionResult class)",
  "properties": {
    "boundingRect": {
      "$ref": "#/components/schemas/BoundingRect"
    },
    "textCandidates": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Recognized text alternatives ranked by confidence"
    },
    "selectedTextIndex": {
      "type": "integer",
      "description": "Index of the selected candidate"
    },
    "strokeIds": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "IDs of strokes that produced this result"
    }
  }
}