[OLD] Detecting handwritten receipts

Introduction

Taggun's API now includes advanced detection tools to identify and flag handwritten receipts. As Taggun's OCR technology improves, it becomes increasingly effective at extracting data from handwritten receipts. This feature helps you identify handwritten receipts, so it can be flagged for manual verification if necessary


Common Cases Handled

  • Handwritten Receipts: Detect receipts that contain handwritten text instead of printed text.
  • Mixed Content Receipts: Identify receipts that have both printed and handwritten content.

How to Set Up

  1. Contact Taggun: Reach out to [email protected] to enable this feature for your account.
  2. Use verbose endpoints: The fraud detection feature is only available in all our verbose endpoints.

Understanding the response properties

Field NameTypeDescription
entities.handwrittingDetectionarrayAn object containing the handwritten detection results.
entities.handwrittingDetection.data.isHandwrittenbooleanIndicates whether the receipt contains handwritten text.
entities.tamperingDetection.data.handwrittenScorenumberThe calculated score indicating the likelihood of handwritten content, with 0 indicating no handwritten content and 0.99 indicating mostly handwritten content


Examples

Handwritten Receipt

RECEIPT & INVOICE OCR API

An example response when a handwritten receipt is submitted

{
  ...
  "entities": {
    "handwritingDetection": {
      "data": {
        "isHandwritten": true,
        "handwrittenScore": 0.99
      }
    }
  }
  ...
}

Start Building

Contact Taggun now [email protected] to get access to this feature, and then dive straight into the API reference to start building fraud-proof applications!