US Healthcare Card OCR .NET
The .NET OCR SDK supports the Healthcare Card API.
Using the sample below, we are going to illustrate how to extract the data that we want using the OCR SDK.
Quick-Start
using Mindee;
using Mindee.Input;
using Mindee.Product.Us.HealthcareCard;
string apiKey = "my-api-key";
string filePath = "/path/to/the/file.ext";
// Construct a new client
MindeeClient mindeeClient = new MindeeClient(apiKey);
// Load an input source as a path string
// Other input types can be used, as mentioned in the docs
var inputSource = new LocalInputSource(filePath);
// Call the product asynchronously with auto-polling
var response = await mindeeClient
.EnqueueAndParseAsync<HealthcareCardV1>(inputSource);
// Print a summary of all the predictions
System.Console.WriteLine(response.Document.ToString());
// Print only the document-level predictions
// System.Console.WriteLine(response.Document.Inference.Prediction.ToString());
Output (RST):
########
Document
########
:Mindee ID: 0ced9f49-00c0-4a1d-8221-4a1538813a95
:Filename: default_sample.jpg
Inference
#########
:Product: mindee/us_healthcare_cards v1.0
:Rotation applied: No
Prediction
==========
:Company Name: UnitedHealthcare
:Member Name: SUBSCRIBER SMITH
:Member ID: 123456789
:Issuer 80840:
:Dependents: SPOUSE SMITH
CHILD1 SMITH
CHILD2 SMITH
CHILD3 SMITH
:Group Number: 98765
:Payer ID: 87726
:RX BIN: 610279
:RX GRP: UHEALTH
:RX PCN: 9999
:copays:
+--------------+--------------+
| Service Fees | Service Name |
+==============+==============+
| 20.00 | office visit |
+--------------+--------------+
| 300.00 | emergency |
+--------------+--------------+
| 75.00 | urgent care |
+--------------+--------------+
| 30.00 | specialist |
+--------------+--------------+
:Enrollment Date: 2023-09-13
Field Types
Standard Fields
These fields are generic and used in several products.
BaseField
Each prediction object contains a set of fields that inherit from the generic BaseField
class.
A typical BaseField
object will have the following attributes:
- Confidence (
double?
): the confidence score of the field prediction. - BoundingBox (
BoundingBox
): contains exactly 4 relative vertices (points) coordinates of a right rectangle containing the field in the document. - Polygon (
Polygon
): contains the relative vertices coordinates (Polygon
extendsList<Point>
) of a polygon containing the field in the image. - PageId (
int?
): the ID of the page, alwaysnull
when at document-level.
Note: A
Point
simply refers to a List ofdouble
.
Aside from the previous attributes, all basic fields have access to a custom ToString
method that can be used to print their value as a string.
StringField
The text field StringField
extends BaseField
, but also implements:
- Value (
string
): corresponds to the field value. - RawValue (
string
): corresponds to the raw value as it appears on the document.
DateField
The date field DateField
extends StringField
, but also implements:
- DateObject (
DateTime?
): an accessible representation of the value as a C# object. Can benull
.
Specific Fields
Fields which are specific to this product; they are not used in any other product.
copays Field
Is a fixed amount for a covered service.
A HealthcareCardV1Copay
implements the following attributes:
- ServiceFees (
double
): The price of service. - ServiceName (
string
): The name of service of the copay.
Attributes
The following fields are extracted for Healthcare Card V1:
Company Name
CompanyName: The name of the company that provides the healthcare plan.
System.Console.WriteLine(result.Document.Inference.Prediction.CompanyName.Value);
copays
Copays(List<HealthcareCardV1Copay>): Is a fixed amount for a covered service.
foreach (var CopaysElem in result.Document.Inference.Prediction.Copays)
{
System.Console.WriteLine(CopaysElem.Value);
}
Dependents
Dependents: The list of dependents covered by the healthcare plan.
foreach (var DependentsElem in result.Document.Inference.Prediction.Dependents)
{
System.Console.WriteLine(DependentsElem.Value);
}
Enrollment Date
EnrollmentDate: The date when the member enrolled in the healthcare plan.
System.Console.WriteLine(result.Document.Inference.Prediction.EnrollmentDate.Value);
Group Number
GroupNumber: The group number associated with the healthcare plan.
System.Console.WriteLine(result.Document.Inference.Prediction.GroupNumber.Value);
Issuer 80840
Issuer80840: The organization that issued the healthcare plan.
System.Console.WriteLine(result.Document.Inference.Prediction.Issuer80840.Value);
Member ID
MemberId: The unique identifier for the member in the healthcare system.
System.Console.WriteLine(result.Document.Inference.Prediction.MemberId.Value);
Member Name
MemberName: The name of the member covered by the healthcare plan.
System.Console.WriteLine(result.Document.Inference.Prediction.MemberName.Value);
Payer ID
PayerId: The unique identifier for the payer in the healthcare system.
System.Console.WriteLine(result.Document.Inference.Prediction.PayerId.Value);
RX BIN
RxBin: The BIN number for prescription drug coverage.
System.Console.WriteLine(result.Document.Inference.Prediction.RxBin.Value);
RX GRP
RxGrp: The group number for prescription drug coverage.
System.Console.WriteLine(result.Document.Inference.Prediction.RxGrp.Value);
RX PCN
RxPcn: The PCN number for prescription drug coverage.
System.Console.WriteLine(result.Document.Inference.Prediction.RxPcn.Value);
Questions?
Updated 4 months ago