Dynamsoft.DotNet.LabelRecognizer 2.0.0

dotnet add package Dynamsoft.DotNet.LabelRecognizer --version 2.0.0
NuGet\Install-Package Dynamsoft.DotNet.LabelRecognizer -Version 2.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Dynamsoft.DotNet.LabelRecognizer" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dynamsoft.DotNet.LabelRecognizer --version 2.0.0
#r "nuget: Dynamsoft.DotNet.LabelRecognizer, 2.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Dynamsoft.DotNet.LabelRecognizer as a Cake Addin
#addin nuget:?package=Dynamsoft.DotNet.LabelRecognizer&version=2.0.0

// Install Dynamsoft.DotNet.LabelRecognizer as a Cake Tool
#tool nuget:?package=Dynamsoft.DotNet.LabelRecognizer&version=2.0.0
Product Compatible and additional computed target framework versions.
.NET Framework net20 is compatible.  net35 was computed.  net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 821 8/26/2021

New:
Added auto-deskew algorithm to improve the performance on recognizing the skewed characters.
Added library `Dynamsoft.Core.dll`. Migrated the Dynamsoft common classes/enums from library `Dynamsoft.LabelRecognizer.dll` and `DynamsoftCommon.dll` to library ` Dynamsoft.Core.dll`.
Added class `BarcodeResult` for users to interact with Dynamsoft Barcode Reader SDK.
Added `DLR_RuntimeSettings` property `DictionaryPath` and `DictionaryCorrectionThresholds` for users to further improve the recognizing accuracy by referencing dictionary files.
Added class `DLR_DictionaryCorrectionThreshold`.
Added class `DLR_FurtherModes` and property `DLR_RuntimeSettings.FurtherModes` for users to config more processing modes.
Added enumeration `TextureDetectionMode` and property `DLR_FurtherModes.TextureDetectionModes` for users to detect and remove the texture background.  
Added enumeration `ColourConversionModes` and property `DLR_FurtherModes.ColourConversionModes` for users to convert color images to grayscale images in differenct ways.  
Added enumeration `BinarizationMode` and property `DLR_RuntimeSettings.B inarizationModes` for users to convert grayscale images to binary images in different ways.  
Added enumeration `GrayscaleEnhancementMode` and property `DLR_FurtherModes.G rayscaleEnhancementModes` for users to enable grayscale images preprocessing.   
Added `CharaterHConfidence`, `CharaterMConfidence` and `CharaterLConfidence` properties in `DLR_CharacterResult` class so that more alternative results will be available for users.

Improved:
Improved the neural network performance by replacing Caffe engine with OpenCV DNN engine.

Fixed:
Fixed a bug that might cause wrong line number matching when using `LineSpecification.LineNumber`.

API Changes:
Modified the InitLicense(string) to static InitLicense(string)
Modified the parameter type of the method `UpdateReferenceRegionFromBarcodeResults` from `TextResult[]` to `BarcodeResult[]`.
Modified the parameters `LabelRecognizerParameter.LetterHeightRange` and `TextArea.LetterHeightRange`. The value unit of the parameters are modified from percentage to thousandth. The available range of the value and the default value are updated as well.
Renamed class LabelRecognition to LableRecognizer
Renamed exception DLR_Exception to LabelRecognizerException
Removed method `InitLicenseFromLTS`.
Removed method `InitLTSConnectionParameters`.
Removed class `DMLTSConnectionParameters`.