Skip to content

Commit d2ac7bc

Browse files
authored
🏷️ Version 1.3.0 (#92)
1 parent 0adf07a commit d2ac7bc

File tree

7 files changed

+138
-1
lines changed

7 files changed

+138
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# CHANGELOG
22

3+
## v1.3.0 (2022-12-22)
4+
5+
### Changes
6+
* :white_check_mark: Cropper API summary
7+
* :sparkles: Adding total taxes amount in Invoice V3 and V4
8+
* :sparkles: Adding Value in Locale for Receipt
9+
* :sparkles: Add Mrz and FullName on Passport
10+
* :sparkles: Support FR ID Card V1
11+
* :sparkles: Support Shipping Container V1
12+
* :sparkles: Support US Bank Check V1
13+
* :sparkles: Support EU License plates V1
14+
315
## v1.2.0 (2022-12-07)
416

517
* :sparkles: Add Invoice V4 support

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>1.2.0</VersionPrefix>
3+
<VersionPrefix>1.3.0</VersionPrefix>
44
<Authors>Mindee</Authors>
55
<PackageProjectUrl>https://github.com/mindee/mindee-api-dotnet</PackageProjectUrl>
66
<RepositoryUrl>https://github.com/mindee/mindee-api-dotnet</RepositoryUrl>

docs/dotnet-license-plates-ocr.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
The .NET SDK OCR SDK supports the API [Licenses plate OCR](https://developers.mindee.com/docs/license-plates-ocr-nodejs) for extracting data from pictures (or documents) of cars.
2+
3+
Using this [sample photo](https://files.readme.io/ffc127d-sample_receipt.jpg) below, we are going to illustrate how to extract the data that we want using the OCR SDK.
4+
![sample receipt](https://files.readme.io/fd6086e-license_plate.jpg)
5+
6+
## Quick Start
7+
```csharp
8+
// Load a file from disk and parse it
9+
10+
string path = "./path/to/the/file.ext";
11+
var prediction = await _mindeeClient
12+
.LoadDocument(File.OpenRead(Path), System.IO.Path.GetFileName(Path))
13+
.ParseAsync<LicensePlatesV1Prediction>();
14+
15+
// Print a summary of the parsed data
16+
System.Console.WriteLine(prediction.Inference.Prediction.ToString());
17+
```
18+
19+
Output:
20+
```
21+
----- EU License plate V1 -----
22+
Licence plates: BY323YB
23+
----------------------
24+
```
25+
26+
&nbsp;
27+
&nbsp;
28+
**Questions?**
29+
<img alt="Slack Logo Icon" style="display:inline!important" src="https://files.readme.io/5b83947-Slack.png" width="20" height="20">&nbsp;&nbsp;[Join our Slack]((https://join.slack.com/t/mindee-community/shared_invite/zt-1jv6nawjq-FDgFcF2T5CmMmRpl9LLptw)
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
The .NET OCR SDK supports the API [Shipping containers OCR](https://developers.mindee.com/docs/shipping-containers-ocr) for extracting data from pictures of containers identification.
2+
3+
Using this [sample](https://files.readme.io/853f15a-shipping_containers.jpg) below, we are going to illustrate how to extract the data that we want using the OCR SDK.
4+
![sample](https://files.readme.io/853f15a-shipping_containers.jpg)
5+
6+
## Quick Start
7+
```csharp
8+
// Load a file from disk and parse it
9+
10+
string path = "./path/to/the/file.ext";
11+
var prediction = await _mindeeClient
12+
.LoadDocument(File.OpenRead(Path), System.IO.Path.GetFileName(Path))
13+
.ParseAsync<ShippingContainerV1Prediction>();
14+
15+
// Print a summary of the parsed data
16+
System.Console.WriteLine(prediction.Inference.Prediction.ToString());
17+
```
18+
19+
Output:
20+
```
21+
----- Shipping Container V1 -----
22+
Owner: MMAU
23+
Serial number: 1193249
24+
Size and type: 45R1
25+
----------------------
26+
```
27+
28+
&nbsp;
29+
&nbsp;
30+
**Questions?**
31+
<img alt="Slack Logo Icon" style="display:inline!important" src="https://files.readme.io/5b83947-Slack.png" width="20" height="20">&nbsp;&nbsp;[Join our Slack]((https://join.slack.com/t/mindee-community/shared_invite/zt-1jv6nawjq-FDgFcF2T5CmMmRpl9LLptw)

docs/dotnet-us-bank-check-ocr.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
The .NET OCR SDK supports the [Bank Checks OCR](https://developers.mindee.com/docs/bank-check-ocr) for extracting data from bank checks.
2+
3+
## Quick Start
4+
```csharp
5+
// Load a file from disk and parse it
6+
7+
string path = "./path/to/the/file.ext";
8+
var prediction = await _mindeeClient
9+
.LoadDocument(File.OpenRead(Path), System.IO.Path.GetFileName(Path))
10+
.ParseAsync<BankCheckV1Prediction>();
11+
12+
// Print a summary of the parsed data
13+
System.Console.WriteLine(prediction.Inference.Prediction.ToString());
14+
```
15+
16+
Output:
17+
```
18+
----- US Bank Check V1 -----
19+
Routing number: 012345678
20+
Account number: 12345678910
21+
Check number: 8620001342
22+
Date: 2022-04-26
23+
Amount: 6496.58
24+
Payees: John Doe, Jane Doe
25+
----------------------
26+
```
27+
28+
&nbsp;
29+
&nbsp;
30+
**Questions?**
31+
<img alt="Slack Logo Icon" style="display:inline!important" src="https://files.readme.io/5b83947-Slack.png" width="20" height="20">&nbsp;&nbsp;[Join our Slack]((https://join.slack.com/t/mindee-community/shared_invite/zt-1jv6nawjq-FDgFcF2T5CmMmRpl9LLptw)

docs/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ Complete details on the working of the library are available in the following gu
5151
* [.NET invoices OCR](dotnet-invoice-ocr.md)
5252
* [.NET receipts OCR](dotnet-receipt-ocr.md)
5353
* [.NET passports OCR](dotnet-passport-ocr.md)
54+
* [.NET shipping containers OCR](dotnet-shipping-containers-ocr.md)
55+
* [.NET US bank check OCR](dotnet-us-bank-check-ocr.md)
56+
* [.NET licenses plates OCR](dotnet-licenses-plates-ocr.md)
5457
* [.NET API Reference](api-reference/Mindee/index.md)
5558

5659
You can view the source code on [GitHub](https://github.com/mindee/mindee-api-dotnet).

sample/Mindee.Sample.sln

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.4.33110.190
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mindee.Sample.Net472", "Mindee.Sample.Net472\Mindee.Sample.Net472.csproj", "{02BDF652-B9F4-407A-A3FD-36C5BCEC8C39}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mindee.Sample.Net60", "Mindee.Sample.Net60\Mindee.Sample.Net60.csproj", "{E4C3FDBA-17EB-452A-979D-08777F909FA1}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Release|Any CPU = Release|Any CPU
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{02BDF652-B9F4-407A-A3FD-36C5BCEC8C39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{02BDF652-B9F4-407A-A3FD-36C5BCEC8C39}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{02BDF652-B9F4-407A-A3FD-36C5BCEC8C39}.Release|Any CPU.ActiveCfg = Release|Any CPU
19+
{02BDF652-B9F4-407A-A3FD-36C5BCEC8C39}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{E4C3FDBA-17EB-452A-979D-08777F909FA1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{E4C3FDBA-17EB-452A-979D-08777F909FA1}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{E4C3FDBA-17EB-452A-979D-08777F909FA1}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{E4C3FDBA-17EB-452A-979D-08777F909FA1}.Release|Any CPU.Build.0 = Release|Any CPU
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {48EC8720-6B0B-4B40-8DCF-217ADF801C32}
30+
EndGlobalSection
31+
EndGlobal

0 commit comments

Comments
 (0)