You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: programming/javascript/api-reference/capture-vision-router/single-image-processing.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ Please be aware that the [preset CaptureVisionTemplates](./preset-templates.md)
37
37
38
38
**Return value**
39
39
40
-
A promise that resolves with a [CapturedResult]({{ site.dcv_js_api }}core/basic-structures/captured-result.html) object which contains the derived information from the image processed.
40
+
A promise that resolves with a [CapturedResult]({{ site.dcv_js_api }}interfaces/captured-result.html) object which contains the derived information from the image processed.
Copy file name to clipboardExpand all lines: programming/javascript/api-reference/core/basic-structures/captured-result.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ ignore: true
11
11
12
12
# CapturedResult
13
13
14
-
The [CapturedResult]({{ site.dcv_js_api }}core/basic-structures/captured-result.html) interface describes the basic structure of a result object returned by Dynamsoft Capture Vision Router.
14
+
The `CapturedResult` interface describes the basic structure of a result object returned by Dynamsoft Capture Vision Router.
@@ -37,6 +41,38 @@ This guide walks you through the process of creating a simple MRZ scanner soluti
37
41
38
42
With the MRZ Scanner, you can use your camera to scan the MRZ code from a passport or ID. The scanner extracts data such as first name, last name, document number, nationality, date of birth, expiration date, and personal number from the MRZ string, converting it into human-readable fields.
The Machine Readable Travel Documents (MRTD) standard specified by the International Civil Aviation Organization (ICAO) defines how to encode information for optical character recognition on official travel documents.
47
+
48
+
Currently, the solution supports three types of MRTD:
49
+
50
+
> Note: If you need support for other types of MRTDs, our SDK can be easily customized. Please contact [email protected].
51
+
52
+
#### ID (TD1 Size)
53
+
54
+
The MRZ (Machine Readable Zone) in TD1 format consists of 3 lines, each containing 30 characters.
55
+
56
+
<div>
57
+
<imgsrc="{{ site.dcvb_root }}programming/assets/td1-id.png"alt="Example of MRZ in TD1 format"width="60%" />
58
+
</div>
59
+
60
+
#### ID (TD2 Size)
61
+
62
+
The MRZ (Machine Readable Zone) in TD2 format consists of 2 lines, with each line containing 36 characters.
63
+
64
+
<div>
65
+
<imgsrc="{{ site.dcvb_root }}programming/assets/td2-id.png"alt="Example of MRZ in TD2 format"width="72%" />
66
+
</div>
67
+
68
+
#### Passport (TD3 Size)
69
+
70
+
The MRZ (Machine Readable Zone) in TD3 format consists of 2 lines, with each line containing 44 characters.
71
+
72
+
<div>
73
+
<imgsrc="{{ site.dcvb_root }}programming/assets/td3-passport.png"alt="Example of MRZ in TD2 format"width="88%" />
74
+
</div>
75
+
40
76
### Web demo
41
77
42
78
The web demo is available at [https://demo.dynamsoft.com/solutions/mrz-scanner/index.html](https://demo.dynamsoft.com/solutions/mrz-scanner/index.html). Rest assured, no personal data will be uploaded.
@@ -108,13 +144,13 @@ The simplest way to include the SDK is to use either the [jsDelivr](https://jsde
> Besides using the public CDN, you can also download the SDK from the npm and host its files on your own server or a commercial CDN before including it in your application. Please see [Host the SDK yourself](#host-the-sdk-yourself)
@@ -210,7 +246,7 @@ You can download the SDK from npm and host it yourself.
210
246
> Note that you need to get two other assisting packages.
0 commit comments