dynamsoft-capture-vision-react-native 3.4.1200 → 3.4.3000
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +5 -5
- package/README.md +62 -66
- package/android/README.md +14 -14
- package/android/build.gradle +167 -163
- package/android/gradle.properties +20 -20
- package/android/settings.gradle +5 -5
- package/android/src/main/AndroidManifest.xml +6 -6
- package/android/src/main/AndroidManifest_noPackage.xml +5 -5
- package/android/src/main/cpp/CMakeLists.txt +21 -21
- package/android/src/main/cpp/ImgHO.cpp +94 -94
- package/android/src/main/cpp/ImgHO.h +34 -34
- package/android/src/main/cpp/JsiCore.cpp +296 -296
- package/android/src/main/cpp/JsiCore.h +51 -51
- package/android/src/main/cpp/JsiCvr.cpp +332 -332
- package/android/src/main/cpp/JsiCvr.h +54 -54
- package/android/src/main/cpp/JsiDbr.cpp +283 -283
- package/android/src/main/cpp/JsiDbr.h +26 -26
- package/android/src/main/cpp/JsiDce.cpp +59 -59
- package/android/src/main/cpp/JsiDce.h +17 -17
- package/android/src/main/cpp/JsiDcp.cpp +51 -51
- package/android/src/main/cpp/JsiDcp.h +31 -31
- package/android/src/main/cpp/JsiDdn.cpp +50 -50
- package/android/src/main/cpp/JsiDdn.h +28 -28
- package/android/src/main/cpp/JsiDlr.cpp +60 -60
- package/android/src/main/cpp/JsiDlr.h +26 -26
- package/android/src/main/cpp/JsiUtility.cpp +604 -604
- package/android/src/main/cpp/JsiUtility.h +26 -26
- package/android/src/main/cpp/RawBuffer.cpp +23 -23
- package/android/src/main/cpp/RawBuffer.h +24 -24
- package/android/src/main/cpp/android_log.h +14 -14
- package/android/src/main/dysJniLibs/debug/arm64-v8a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibs/debug/armeabi-v7a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibs/debug/x86/librn_dys.so +0 -0
- package/android/src/main/dysJniLibs/debug/x86_64/librn_dys.so +0 -0
- package/android/src/main/dysJniLibs/release/arm64-v8a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibs/release/armeabi-v7a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibs/release/x86/librn_dys.so +0 -0
- package/android/src/main/dysJniLibs/release/x86_64/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/debug/arm64-v8a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/debug/armeabi-v7a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/debug/x86/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/debug/x86_64/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/release/arm64-v8a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/release/armeabi-v7a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/release/x86/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/release/x86_64/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/debug/arm64-v8a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/debug/armeabi-v7a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/debug/x86/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/debug/x86_64/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/release/arm64-v8a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/release/armeabi-v7a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/release/x86/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/release/x86_64/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor86/debug/arm64-v8a/librn_dys.so +3 -0
- package/android/src/main/dysJniLibsFor86/debug/armeabi-v7a/librn_dys.so +3 -0
- package/android/src/main/dysJniLibsFor86/debug/x86/librn_dys.so +3 -0
- package/android/src/main/dysJniLibsFor86/debug/x86_64/librn_dys.so +3 -0
- package/android/src/main/dysJniLibsFor86/release/arm64-v8a/librn_dys.so +3 -0
- package/android/src/main/dysJniLibsFor86/release/armeabi-v7a/librn_dys.so +3 -0
- package/android/src/main/dysJniLibsFor86/release/x86/librn_dys.so +3 -0
- package/android/src/main/dysJniLibsFor86/release/x86_64/librn_dys.so +3 -0
- package/android/src/main/java/com/dynamsoft/reactnativelib/CVRModule.kt +137 -137
- package/android/src/main/java/com/dynamsoft/reactnativelib/CameraViewManager.kt +62 -62
- package/android/src/main/java/com/dynamsoft/reactnativelib/DCEModule.kt +125 -125
- package/android/src/main/java/com/dynamsoft/reactnativelib/DynamsoftBaseModule.kt +8 -8
- package/android/src/main/java/com/dynamsoft/reactnativelib/ISAModule.kt +73 -73
- package/android/src/main/java/com/dynamsoft/reactnativelib/ImageEditorViewManager.kt +14 -14
- package/android/src/main/java/com/dynamsoft/reactnativelib/ImageEditorViewModule.kt +35 -35
- package/android/src/main/java/com/dynamsoft/reactnativelib/ImageManagerModule.kt +15 -15
- package/android/src/main/java/com/dynamsoft/reactnativelib/LicenseModule.kt +29 -29
- package/android/src/main/java/com/dynamsoft/reactnativelib/MultiCrossFilterModule.kt +83 -83
- package/android/src/main/java/com/dynamsoft/reactnativelib/ReactNativeDcvPackage.kt +32 -32
- package/android/src/main/java/com/dynamsoft/reactnativelib/VersionsModule.kt +41 -41
- package/android/src/main/java/com/dynamsoft/reactnativelib/basicutils/Basic.kt +44 -44
- package/android/src/main/java/com/dynamsoft/reactnativelib/basicutils/ForCore.kt +50 -50
- package/android/src/main/java/com/dynamsoft/reactnativelib/basicutils/ForCvr.kt +129 -129
- package/android/src/main/java/com/dynamsoft/reactnativelib/basicutils/ForDBR.kt +157 -157
- package/android/src/main/java/com/dynamsoft/reactnativelib/basicutils/ForDCE.kt +110 -110
- package/android/src/main/java/com/dynamsoft/reactnativelib/basicutils/ForDCP.kt +49 -49
- package/android/src/main/java/com/dynamsoft/reactnativelib/basicutils/ForDDN.kt +85 -85
- package/android/src/main/java/com/dynamsoft/reactnativelib/basicutils/ForDLR.kt +72 -72
- package/android/src/main/java/com/dynamsoft/reactnativelib/basicutils/ImageUtil.kt +58 -58
- package/android/src/main/java/com/dynamsoft/reactnativelib/core/ImageSourceAdapterModuleImpl.kt +120 -120
- package/android/src/main/java/com/dynamsoft/reactnativelib/cvr/CaptureVisionRouterModuleImpl.kt +306 -306
- package/android/src/main/java/com/dynamsoft/reactnativelib/dce/CameraEnhancerModuleImpl.kt +247 -247
- package/android/src/main/java/com/dynamsoft/reactnativelib/dce/CameraLifeCycleOwner.java +14 -14
- package/android/src/main/java/com/dynamsoft/reactnativelib/dce/CameraViewManagerImpl.kt +77 -77
- package/android/src/main/java/com/dynamsoft/reactnativelib/dce/ImageEditorViewManagerImpl.kt +15 -15
- package/android/src/main/java/com/dynamsoft/reactnativelib/dce/ImageEditorViewModuleImpl.kt +110 -110
- package/android/src/main/java/com/dynamsoft/reactnativelib/dce/RNCameraView.kt +20 -20
- package/android/src/main/java/com/dynamsoft/reactnativelib/dce/RNImageEditorView.kt +19 -19
- package/android/src/main/java/com/dynamsoft/reactnativelib/license/LicenseModuleImpl.kt +39 -39
- package/android/src/main/java/com/dynamsoft/reactnativelib/utility/ImageManagerModuleImpl.kt +120 -120
- package/android/src/main/java/com/dynamsoft/reactnativelib/utility/MultiCrossFilterModuleImpl.kt +111 -111
- package/app.plugin.js +21 -21
- package/dynamsoft-capture-vision-react-native.podspec +24 -24
- package/ios/CPP/DSImageData+HostObject.h +18 -18
- package/ios/CPP/DSImageData+HostObject.mm +38 -38
- package/ios/CPP/ImageDataHostObject.cpp +87 -87
- package/ios/CPP/ImageDataHostObject.hpp +35 -35
- package/ios/CPP/MutableRawBuffer.cpp +23 -23
- package/ios/CPP/MutableRawBuffer.hpp +23 -23
- package/ios/CPP/RNDynamsoft+JSI.h +22 -22
- package/ios/CPP/RNDynamsoft+JSI.mm +303 -303
- package/ios/CPP/RNDynamsoft+Json.h +93 -93
- package/ios/CPP/RNDynamsoft+Json.m +733 -733
- package/ios/CPP/YeetJSIUtils.h +56 -56
- package/ios/CPP/YeetJSIUtils.mm +208 -208
- package/ios/RNDynamsoftCameraView.h +31 -31
- package/ios/RNDynamsoftCameraView.m +108 -108
- package/ios/RNDynamsoftCameraViewManager.h +14 -14
- package/ios/RNDynamsoftCameraViewManager.m +195 -195
- package/ios/RNDynamsoftCaptureVisionRouter.h +18 -18
- package/ios/RNDynamsoftCaptureVisionRouter.mm +532 -532
- package/ios/RNDynamsoftImageEditorView.h +17 -17
- package/ios/RNDynamsoftImageEditorView.m +25 -25
- package/ios/RNDynamsoftImageEditorViewManager.h +14 -14
- package/ios/RNDynamsoftImageEditorViewManager.mm +183 -183
- package/ios/RNDynamsoftImageManager.h +14 -14
- package/ios/RNDynamsoftImageManager.mm +369 -369
- package/ios/RNDynamsoftImageSourceAdapter.h +19 -19
- package/ios/RNDynamsoftImageSourceAdapter.mm +255 -255
- package/ios/RNDynamsoftLicense.h +14 -14
- package/ios/RNDynamsoftLicense.m +62 -62
- package/ios/RNDynamsoftMultiCrossFilter.h +14 -14
- package/ios/RNDynamsoftMultiCrossFilter.m +145 -145
- package/ios/RNDynamsoftVersions.h +13 -13
- package/ios/RNDynamsoftVersions.m +27 -27
- package/package.json +48 -48
- package/src/NativeDynamsoftVersionsModule.tsx +20 -20
- package/src/VersionsModule.tsx +7 -7
- package/src/core/CapturedResultBase.tsx +18 -18
- package/src/core/CapturedResultItem.tsx +23 -23
- package/src/core/CoreModule.tsx +9 -9
- package/src/core/DSRect.tsx +29 -29
- package/src/core/EnumCaptureResultItemType.tsx +52 -52
- package/src/core/EnumColourChannelUsageType.tsx +26 -26
- package/src/core/EnumCrossVerificationStatus.tsx +46 -46
- package/src/core/EnumGrayscaleEnhancementMode.tsx +46 -46
- package/src/core/EnumGrayscaleTransformationMode.tsx +35 -35
- package/src/core/EnumImageFileFormat.tsx +6 -6
- package/src/core/EnumPixelFormat.tsx +53 -53
- package/src/core/ImageData.tsx +87 -87
- package/src/core/ImageSourceAdapter.tsx +160 -160
- package/src/core/NativeDynamsoftImageSourceAdapterModule.tsx +29 -29
- package/src/core/Point.tsx +13 -13
- package/src/core/Quadrilateral.tsx +12 -12
- package/src/core/index.tsx +18 -18
- package/src/cvr/CaptureVisionRouter.tsx +683 -683
- package/src/cvr/CaptureVisionRouterModule.tsx +9 -9
- package/src/cvr/CapturedResult.tsx +123 -123
- package/src/cvr/CapturedResultFilter.tsx +13 -13
- package/src/cvr/CapturedResultReceiver.tsx +71 -71
- package/src/cvr/EnumPresetTemplate.tsx +81 -81
- package/src/cvr/NativeDynamsoftCaptureVisionRouterModule.tsx +25 -25
- package/src/cvr/SimplifiedCaptureVisionSettings.tsx +61 -61
- package/src/cvr/index.tsx +11 -11
- package/src/dbr/BarcodeDetails.tsx +51 -51
- package/src/dbr/BarcodeReaderModule.tsx +9 -9
- package/src/dbr/BarcodeResultItem.tsx +65 -65
- package/src/dbr/DecodedBarcodesResult.tsx +14 -14
- package/src/dbr/ECISegment.tsx +23 -23
- package/src/dbr/EnumBarcodeFormat.tsx +112 -112
- package/src/dbr/EnumDeblurMode.tsx +29 -29
- package/src/dbr/EnumLocalizationMode.tsx +27 -27
- package/src/dbr/EnumQRCodeErrorCorrectionLevel.tsx +6 -6
- package/src/dbr/SimplifiedBarcodeReaderSettings.tsx +80 -80
- package/src/dbr/index.tsx +9 -9
- package/src/dce/CameraEnhancer.tsx +254 -254
- package/src/dce/CameraEnhancerModule.tsx +9 -9
- package/src/dce/CameraView.tsx +100 -100
- package/src/dce/DynamsoftCameraViewNativeComponent.ts +96 -96
- package/src/dce/DynamsoftImageEditorViewNativeComponent.ts +9 -9
- package/src/dce/EnumCameraPosition.tsx +25 -25
- package/src/dce/EnumDrawingLayerId.tsx +17 -17
- package/src/dce/EnumEnhancedFeatures.tsx +24 -24
- package/src/dce/EnumFocusMode.tsx +6 -6
- package/src/dce/EnumResolution.tsx +8 -8
- package/src/dce/EnumTorchState.tsx +10 -10
- package/src/dce/FeedBack.tsx +28 -28
- package/src/dce/ImageEditorView.tsx +131 -131
- package/src/dce/NativeDynamsoftCameraViewModule.tsx +47 -47
- package/src/dce/NativeDynamsoftImageEditorViewModule.ts +9 -9
- package/src/dce/index.tsx +13 -13
- package/src/dcp/CodeParserDedicatorModule.tsx +9 -9
- package/src/dcp/CodeParserModule.tsx +9 -9
- package/src/dcp/EnumMappingStatus.tsx +14 -14
- package/src/dcp/EnumValidationStatus.tsx +14 -14
- package/src/dcp/ParsedResult.tsx +14 -14
- package/src/dcp/ParsedResultItem.tsx +50 -50
- package/src/dcp/index.tsx +8 -8
- package/src/ddn/DeskewedImageResultItem.tsx +40 -40
- package/src/ddn/DetectedQuadResultItem.tsx +31 -31
- package/src/ddn/DocumentNormalizerModule.tsx +9 -9
- package/src/ddn/EnhancedImageResultItem.tsx +20 -20
- package/src/ddn/EnumImageColourMode.tsx +14 -14
- package/src/ddn/ProcessedDocumentResult.tsx +27 -27
- package/src/ddn/SimplifiedDocumentNormalizerSettings.tsx +65 -65
- package/src/ddn/index.tsx +11 -11
- package/src/dip/ImageProcessingModule.tsx +9 -9
- package/src/dip/index.tsx +1 -1
- package/src/dlr/CharacterResult.tsx +28 -28
- package/src/dlr/LabelRecognizerModule.tsx +9 -9
- package/src/dlr/RecognizedTextLinesResult.tsx +19 -19
- package/src/dlr/SimplifiedLabelRecognizerSettings.tsx +33 -33
- package/src/dlr/TextLineResultItem.tsx +41 -41
- package/src/dlr/index.tsx +8 -8
- package/src/index.tsx +13 -13
- package/src/license/LicenseManager.tsx +49 -49
- package/src/license/LicenseModule.tsx +9 -9
- package/src/license/NativeDynamsoftLicenseModule.tsx +7 -7
- package/src/license/index.tsx +7 -7
- package/src/utility/CrossVerificationCriteria.tsx +11 -11
- package/src/utility/EnumFilterType.tsx +5 -5
- package/src/utility/ImageManager.tsx +348 -348
- package/src/utility/MultiFrameResultCrossFilter.tsx +183 -183
- package/src/utility/NativeDynamsoftImageManagerModule.tsx +7 -7
- package/src/utility/NativeDynamsoftMultiCrossFilterModule.tsx +18 -18
- package/src/utility/UtilityModule.tsx +9 -9
- package/src/utility/index.tsx +4 -4
- package/android/.gitignore +0 -4
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
import {type CapturedResultItem, EnumCrossVerificationStatus, type ImageData, type Quadrilateral, EnumCapturedResultItemType} from "../core";
|
|
2
|
-
import { type ProcessedDocumentResult } from "./ProcessedDocumentResult";
|
|
3
|
-
import {CaptureVisionRouter} from "../cvr";
|
|
4
|
-
import {MultiFrameResultCrossFilter} from "../utility"
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* The DeskewedImageResultItem interface extends the {@link CapturedResultItem} interface and represents a deskewed image.
|
|
8
|
-
* @see {@link EnumCapturedResultItemType.CRIT_DESKEWED_IMAGE}
|
|
9
|
-
* @see {@link ProcessedDocumentResult.deskewedImageResultItems}
|
|
10
|
-
* */
|
|
11
|
-
export interface DeskewedImageResultItem extends CapturedResultItem {
|
|
12
|
-
/**
|
|
13
|
-
* The quadrilateral from which you get the deskewed image result item.
|
|
14
|
-
* @see {@link Quadrilateral}
|
|
15
|
-
* */
|
|
16
|
-
sourceDeskewQuad: Quadrilateral;
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* The cross verification status of type {@link EnumCrossVerificationStatus}.
|
|
20
|
-
*
|
|
21
|
-
* @remarks If {@link CaptureVisionRouter} doesn't add {@link MultiFrameResultCrossFilter} via {@link CaptureVisionRouter.addFilter}
|
|
22
|
-
* or added {@link MultiFrameResultCrossFilter} doesn't enable verification for the corresponding type,
|
|
23
|
-
* the crossVerificationStatus property of the item for that type will always remain {@link EnumCrossVerificationStatus.CVS_NOT_VERIFIED}.
|
|
24
|
-
*
|
|
25
|
-
* @see {@link EnumCrossVerificationStatus}
|
|
26
|
-
* @see {@link MultiFrameResultCrossFilter.enableResultCrossVerification}
|
|
27
|
-
* */
|
|
28
|
-
crossVerificationStatus: EnumCrossVerificationStatus | number;
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* The transformation matrix from the original image coordinate system to the local coordinate system.
|
|
32
|
-
* */
|
|
33
|
-
originalToLocalMatrix: Array<number>;
|
|
34
|
-
|
|
35
|
-
/**
|
|
36
|
-
* An ImageData object as the deskewed image.
|
|
37
|
-
* @see {@link ImageData}
|
|
38
|
-
* */
|
|
39
|
-
imageData: ImageData;
|
|
40
|
-
}
|
|
1
|
+
import {type CapturedResultItem, EnumCrossVerificationStatus, type ImageData, type Quadrilateral, EnumCapturedResultItemType} from "../core";
|
|
2
|
+
import { type ProcessedDocumentResult } from "./ProcessedDocumentResult";
|
|
3
|
+
import {CaptureVisionRouter} from "../cvr";
|
|
4
|
+
import {MultiFrameResultCrossFilter} from "../utility"
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* The DeskewedImageResultItem interface extends the {@link CapturedResultItem} interface and represents a deskewed image.
|
|
8
|
+
* @see {@link EnumCapturedResultItemType.CRIT_DESKEWED_IMAGE}
|
|
9
|
+
* @see {@link ProcessedDocumentResult.deskewedImageResultItems}
|
|
10
|
+
* */
|
|
11
|
+
export interface DeskewedImageResultItem extends CapturedResultItem {
|
|
12
|
+
/**
|
|
13
|
+
* The quadrilateral from which you get the deskewed image result item.
|
|
14
|
+
* @see {@link Quadrilateral}
|
|
15
|
+
* */
|
|
16
|
+
sourceDeskewQuad: Quadrilateral;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* The cross verification status of type {@link EnumCrossVerificationStatus}.
|
|
20
|
+
*
|
|
21
|
+
* @remarks If {@link CaptureVisionRouter} doesn't add {@link MultiFrameResultCrossFilter} via {@link CaptureVisionRouter.addFilter}
|
|
22
|
+
* or added {@link MultiFrameResultCrossFilter} doesn't enable verification for the corresponding type,
|
|
23
|
+
* the crossVerificationStatus property of the item for that type will always remain {@link EnumCrossVerificationStatus.CVS_NOT_VERIFIED}.
|
|
24
|
+
*
|
|
25
|
+
* @see {@link EnumCrossVerificationStatus}
|
|
26
|
+
* @see {@link MultiFrameResultCrossFilter.enableResultCrossVerification}
|
|
27
|
+
* */
|
|
28
|
+
crossVerificationStatus: EnumCrossVerificationStatus | number;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* The transformation matrix from the original image coordinate system to the local coordinate system.
|
|
32
|
+
* */
|
|
33
|
+
originalToLocalMatrix: Array<number>;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* An ImageData object as the deskewed image.
|
|
37
|
+
* @see {@link ImageData}
|
|
38
|
+
* */
|
|
39
|
+
imageData: ImageData;
|
|
40
|
+
}
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import type {CapturedResultItem, Quadrilateral, EnumCapturedResultItemType, EnumCrossVerificationStatus} from "../core";
|
|
2
|
-
import {MultiFrameResultCrossFilter} from "../utility";
|
|
3
|
-
import {CaptureVisionRouter} from "../cvr";
|
|
4
|
-
import { type ProcessedDocumentResult } from "./ProcessedDocumentResult";
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* The DetectedQuadResultItem interface extends the {@link CapturedResultItem} interface and represents a detected quadrilateral result item.
|
|
8
|
-
* @see {@link EnumCapturedResultItemType.CRIT_DETECTED_QUAD}
|
|
9
|
-
* @see {@link ProcessedDocumentResult.detectedQuadResultItems}
|
|
10
|
-
* */
|
|
11
|
-
export interface DetectedQuadResultItem extends CapturedResultItem {
|
|
12
|
-
/**
|
|
13
|
-
* The location of the detected quadrilateral within the original image, represented as a quadrilateral shape.
|
|
14
|
-
* @see {@link Quadrilateral}
|
|
15
|
-
* */
|
|
16
|
-
location: Quadrilateral;
|
|
17
|
-
/**A confidence score measuring the certainty that the detected quadrilateral represents the boundary of a document.*/
|
|
18
|
-
confidenceAsDocumentBoundary: number;
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* The cross verification status of type {@link EnumCrossVerificationStatus}.
|
|
22
|
-
*
|
|
23
|
-
* @remarks If {@link CaptureVisionRouter} doesn't add {@link MultiFrameResultCrossFilter} via {@link CaptureVisionRouter.addFilter}
|
|
24
|
-
* or added {@link MultiFrameResultCrossFilter} doesn't enable verification for the corresponding type,
|
|
25
|
-
* the crossVerificationStatus property of the item for that type will always remain {@link EnumCrossVerificationStatus.CVS_NOT_VERIFIED}.
|
|
26
|
-
*
|
|
27
|
-
* @see {@link EnumCrossVerificationStatus}
|
|
28
|
-
* @see {@link MultiFrameResultCrossFilter.enableResultCrossVerification}
|
|
29
|
-
* */
|
|
30
|
-
crossVerificationStatus: EnumCrossVerificationStatus | number
|
|
31
|
-
}
|
|
1
|
+
import type {CapturedResultItem, Quadrilateral, EnumCapturedResultItemType, EnumCrossVerificationStatus} from "../core";
|
|
2
|
+
import {MultiFrameResultCrossFilter} from "../utility";
|
|
3
|
+
import {CaptureVisionRouter} from "../cvr";
|
|
4
|
+
import { type ProcessedDocumentResult } from "./ProcessedDocumentResult";
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* The DetectedQuadResultItem interface extends the {@link CapturedResultItem} interface and represents a detected quadrilateral result item.
|
|
8
|
+
* @see {@link EnumCapturedResultItemType.CRIT_DETECTED_QUAD}
|
|
9
|
+
* @see {@link ProcessedDocumentResult.detectedQuadResultItems}
|
|
10
|
+
* */
|
|
11
|
+
export interface DetectedQuadResultItem extends CapturedResultItem {
|
|
12
|
+
/**
|
|
13
|
+
* The location of the detected quadrilateral within the original image, represented as a quadrilateral shape.
|
|
14
|
+
* @see {@link Quadrilateral}
|
|
15
|
+
* */
|
|
16
|
+
location: Quadrilateral;
|
|
17
|
+
/**A confidence score measuring the certainty that the detected quadrilateral represents the boundary of a document.*/
|
|
18
|
+
confidenceAsDocumentBoundary: number;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* The cross verification status of type {@link EnumCrossVerificationStatus}.
|
|
22
|
+
*
|
|
23
|
+
* @remarks If {@link CaptureVisionRouter} doesn't add {@link MultiFrameResultCrossFilter} via {@link CaptureVisionRouter.addFilter}
|
|
24
|
+
* or added {@link MultiFrameResultCrossFilter} doesn't enable verification for the corresponding type,
|
|
25
|
+
* the crossVerificationStatus property of the item for that type will always remain {@link EnumCrossVerificationStatus.CVS_NOT_VERIFIED}.
|
|
26
|
+
*
|
|
27
|
+
* @see {@link EnumCrossVerificationStatus}
|
|
28
|
+
* @see {@link MultiFrameResultCrossFilter.enableResultCrossVerification}
|
|
29
|
+
* */
|
|
30
|
+
crossVerificationStatus: EnumCrossVerificationStatus | number
|
|
31
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {DynamsoftVersions} from '../VersionsModule'
|
|
2
|
-
import {Platform} from "react-native";
|
|
3
|
-
|
|
4
|
-
/** @hideconstructor */
|
|
5
|
-
export class DocumentNormalizerModule {
|
|
6
|
-
static getVersion(): string {
|
|
7
|
-
return '['+Platform.OS+']: ' + DynamsoftVersions.ddn
|
|
8
|
-
}
|
|
9
|
-
}
|
|
1
|
+
import {DynamsoftVersions} from '../VersionsModule'
|
|
2
|
+
import {Platform} from "react-native";
|
|
3
|
+
|
|
4
|
+
/** @hideconstructor */
|
|
5
|
+
export class DocumentNormalizerModule {
|
|
6
|
+
static getVersion(): string {
|
|
7
|
+
return '['+Platform.OS+']: ' + DynamsoftVersions.ddn
|
|
8
|
+
}
|
|
9
|
+
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { type ProcessedDocumentResult } from "./ProcessedDocumentResult";
|
|
2
|
-
import type {CapturedResultItem, ImageData, EnumCapturedResultItemType} from "../core";
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* The EnhancedImageResultItem interface extends the {@link CapturedResultItem} interface and represents a enhanced image.
|
|
6
|
-
* @see {@link EnumCapturedResultItemType.CRIT_ENHANCED_IMAGE}
|
|
7
|
-
* @see {@link ProcessedDocumentResult.enhancedImageResultItems}
|
|
8
|
-
* */
|
|
9
|
-
export interface EnhancedImageResultItem extends CapturedResultItem{
|
|
10
|
-
/**
|
|
11
|
-
* The transformation matrix from the original image coordinate system to the local coordinate system.
|
|
12
|
-
* */
|
|
13
|
-
originalToLocalMatrix: Array<number>;
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* An ImageData object as the enhanced image.
|
|
17
|
-
@see {@link ImageData}
|
|
18
|
-
* */
|
|
19
|
-
imageData: ImageData;
|
|
20
|
-
}
|
|
1
|
+
import { type ProcessedDocumentResult } from "./ProcessedDocumentResult";
|
|
2
|
+
import type {CapturedResultItem, ImageData, EnumCapturedResultItemType} from "../core";
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* The EnhancedImageResultItem interface extends the {@link CapturedResultItem} interface and represents a enhanced image.
|
|
6
|
+
* @see {@link EnumCapturedResultItemType.CRIT_ENHANCED_IMAGE}
|
|
7
|
+
* @see {@link ProcessedDocumentResult.enhancedImageResultItems}
|
|
8
|
+
* */
|
|
9
|
+
export interface EnhancedImageResultItem extends CapturedResultItem{
|
|
10
|
+
/**
|
|
11
|
+
* The transformation matrix from the original image coordinate system to the local coordinate system.
|
|
12
|
+
* */
|
|
13
|
+
originalToLocalMatrix: Array<number>;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* An ImageData object as the enhanced image.
|
|
17
|
+
@see {@link ImageData}
|
|
18
|
+
* */
|
|
19
|
+
imageData: ImageData;
|
|
20
|
+
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* `ImageColourMode` describes the output colour mode of the normalized image.
|
|
3
|
-
* @see {@link SimplifiedDocumentNormalizerSettings.colourMode}
|
|
4
|
-
* */
|
|
5
|
-
export enum EnumImageColourMode {
|
|
6
|
-
/** Output image in colour mode. */
|
|
7
|
-
ICM_COLOUR,
|
|
8
|
-
|
|
9
|
-
/** Output image in grayscale mode. */
|
|
10
|
-
ICM_GRAYSCALE,
|
|
11
|
-
|
|
12
|
-
/** Output image in binary mode. */
|
|
13
|
-
ICM_BINARY
|
|
14
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* `ImageColourMode` describes the output colour mode of the normalized image.
|
|
3
|
+
* @see {@link SimplifiedDocumentNormalizerSettings.colourMode}
|
|
4
|
+
* */
|
|
5
|
+
export enum EnumImageColourMode {
|
|
6
|
+
/** Output image in colour mode. */
|
|
7
|
+
ICM_COLOUR,
|
|
8
|
+
|
|
9
|
+
/** Output image in grayscale mode. */
|
|
10
|
+
ICM_GRAYSCALE,
|
|
11
|
+
|
|
12
|
+
/** Output image in binary mode. */
|
|
13
|
+
ICM_BINARY
|
|
14
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import type {CapturedResultBase} from "../core";
|
|
2
|
-
import type {DeskewedImageResultItem} from "./DeskewedImageResultItem";
|
|
3
|
-
import type {CapturedResultReceiver} from "../cvr";
|
|
4
|
-
import type {DetectedQuadResultItem} from "../ddn";
|
|
5
|
-
import type {EnhancedImageResultItem} from "./EnhancedImageResultItem";
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* The ProcessedDocumentResult interface holds information on processed document result,
|
|
9
|
-
* of type {@link DetectedQuadResultItem}, within an image.
|
|
10
|
-
* @see {@link CapturedResultReceiver.onProcessedDocumentResultReceived}
|
|
11
|
-
* */
|
|
12
|
-
export interface ProcessedDocumentResult extends CapturedResultBase {
|
|
13
|
-
/**
|
|
14
|
-
* Gets the deskew images with an array of {@link DeskewedImageResultItem}
|
|
15
|
-
* */
|
|
16
|
-
deskewedImageResultItems?: Array<DeskewedImageResultItem>;
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* Gets the detected boundaries with an array of {@link DetectedQuadResultItem}.
|
|
20
|
-
* */
|
|
21
|
-
detectedQuadResultItems?: Array<DetectedQuadResultItem>;
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* Gets the enhanced images with an array of {@link EnhancedImageResultItem}.
|
|
25
|
-
* */
|
|
26
|
-
enhancedImageResultItems?: Array<EnhancedImageResultItem>;
|
|
27
|
-
}
|
|
1
|
+
import type {CapturedResultBase} from "../core";
|
|
2
|
+
import type {DeskewedImageResultItem} from "./DeskewedImageResultItem";
|
|
3
|
+
import type {CapturedResultReceiver} from "../cvr";
|
|
4
|
+
import type {DetectedQuadResultItem} from "../ddn";
|
|
5
|
+
import type {EnhancedImageResultItem} from "./EnhancedImageResultItem";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* The ProcessedDocumentResult interface holds information on processed document result,
|
|
9
|
+
* of type {@link DetectedQuadResultItem}, within an image.
|
|
10
|
+
* @see {@link CapturedResultReceiver.onProcessedDocumentResultReceived}
|
|
11
|
+
* */
|
|
12
|
+
export interface ProcessedDocumentResult extends CapturedResultBase {
|
|
13
|
+
/**
|
|
14
|
+
* Gets the deskew images with an array of {@link DeskewedImageResultItem}
|
|
15
|
+
* */
|
|
16
|
+
deskewedImageResultItems?: Array<DeskewedImageResultItem>;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Gets the detected boundaries with an array of {@link DetectedQuadResultItem}.
|
|
20
|
+
* */
|
|
21
|
+
detectedQuadResultItems?: Array<DetectedQuadResultItem>;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Gets the enhanced images with an array of {@link EnhancedImageResultItem}.
|
|
25
|
+
* */
|
|
26
|
+
enhancedImageResultItems?: Array<EnhancedImageResultItem>;
|
|
27
|
+
}
|
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
import type {EnumGrayscaleEnhancementMode, EnumGrayscaleTransformationMode} from "../core";
|
|
2
|
-
import type {EnumImageColourMode} from "./EnumImageColourMode";
|
|
3
|
-
import type {SimplifiedCaptureVisionSettings} from "../cvr";
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* This interface defines simplified settings for document normalizer tasks.
|
|
7
|
-
* @see {@link SimplifiedCaptureVisionSettings.documentSettings}
|
|
8
|
-
* */
|
|
9
|
-
export interface SimplifiedDocumentNormalizerSettings {
|
|
10
|
-
/**
|
|
11
|
-
* Sets the grayscale transformation modes with an array of enumeration GrayscaleTransformationMode.
|
|
12
|
-
* View the reference page of GrayscaleTransformationModes for more detail about grayscale transformation modes.
|
|
13
|
-
* @see {@link EnumGrayscaleTransformationMode}
|
|
14
|
-
* */
|
|
15
|
-
grayscaleTransformationModes?: Int32Array | Array<EnumGrayscaleTransformationMode>
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* Sets the grayscale enhancement modes with an array of enumeration GrayscaleEnhancementMode.
|
|
19
|
-
* View the reference page of GrayscaleEnhancementModes for more detail about grayscale enhancement modes.
|
|
20
|
-
* @see {@link EnumGrayscaleEnhancementMode}
|
|
21
|
-
* */
|
|
22
|
-
grayscaleEnhancementModes?: Int32Array | Array<EnumGrayscaleEnhancementMode>
|
|
23
|
-
|
|
24
|
-
/**Sets the page size (width and height in pixels) of the normalized image.*/
|
|
25
|
-
pageSize?: [number, number]
|
|
26
|
-
|
|
27
|
-
/**
|
|
28
|
-
* Sets the colour mode of the normalized image with enumeration ImageColourMode. View the reference page of ImageColourMode for more detail about colour mode.
|
|
29
|
-
* @see {@link EnumImageColourMode}
|
|
30
|
-
* */
|
|
31
|
-
colourMode?: number | EnumImageColourMode
|
|
32
|
-
|
|
33
|
-
/**
|
|
34
|
-
* Sets the brightness of the normalized image. The value range is [-100,100].
|
|
35
|
-
* */
|
|
36
|
-
brightness?: number
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
* Sets the contrast of the normalized image. The value range is [-100,100].
|
|
40
|
-
* */
|
|
41
|
-
contrast?: number
|
|
42
|
-
|
|
43
|
-
/**
|
|
44
|
-
* Sets the maximum number of threads in one task.
|
|
45
|
-
* */
|
|
46
|
-
maxThreadsInOneTask?: number
|
|
47
|
-
|
|
48
|
-
/**
|
|
49
|
-
* Sets the threshold for scaling down the input image during document detection.
|
|
50
|
-
* If the shorter edge size of the image is larger than this threshold,the original may be scaled down to reduce processing time.
|
|
51
|
-
* The default value is 2300.
|
|
52
|
-
* */
|
|
53
|
-
scaleDownThreshold?: number
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
/**
|
|
57
|
-
* Sets the minimum ratio between the target document area and the total image area. Only those exceeding this value will be output (measured in percentages).
|
|
58
|
-
* */
|
|
59
|
-
minQuadrilateralAreaRatio?: number
|
|
60
|
-
|
|
61
|
-
/**
|
|
62
|
-
* Sets the number of documents expected to be detected.
|
|
63
|
-
* */
|
|
64
|
-
expectedDocumentsCount?: number
|
|
65
|
-
}
|
|
1
|
+
import type {EnumGrayscaleEnhancementMode, EnumGrayscaleTransformationMode} from "../core";
|
|
2
|
+
import type {EnumImageColourMode} from "./EnumImageColourMode";
|
|
3
|
+
import type {SimplifiedCaptureVisionSettings} from "../cvr";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* This interface defines simplified settings for document normalizer tasks.
|
|
7
|
+
* @see {@link SimplifiedCaptureVisionSettings.documentSettings}
|
|
8
|
+
* */
|
|
9
|
+
export interface SimplifiedDocumentNormalizerSettings {
|
|
10
|
+
/**
|
|
11
|
+
* Sets the grayscale transformation modes with an array of enumeration GrayscaleTransformationMode.
|
|
12
|
+
* View the reference page of GrayscaleTransformationModes for more detail about grayscale transformation modes.
|
|
13
|
+
* @see {@link EnumGrayscaleTransformationMode}
|
|
14
|
+
* */
|
|
15
|
+
grayscaleTransformationModes?: Int32Array | Array<EnumGrayscaleTransformationMode>
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Sets the grayscale enhancement modes with an array of enumeration GrayscaleEnhancementMode.
|
|
19
|
+
* View the reference page of GrayscaleEnhancementModes for more detail about grayscale enhancement modes.
|
|
20
|
+
* @see {@link EnumGrayscaleEnhancementMode}
|
|
21
|
+
* */
|
|
22
|
+
grayscaleEnhancementModes?: Int32Array | Array<EnumGrayscaleEnhancementMode>
|
|
23
|
+
|
|
24
|
+
/**Sets the page size (width and height in pixels) of the normalized image.*/
|
|
25
|
+
pageSize?: [number, number]
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Sets the colour mode of the normalized image with enumeration ImageColourMode. View the reference page of ImageColourMode for more detail about colour mode.
|
|
29
|
+
* @see {@link EnumImageColourMode}
|
|
30
|
+
* */
|
|
31
|
+
colourMode?: number | EnumImageColourMode
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Sets the brightness of the normalized image. The value range is [-100,100].
|
|
35
|
+
* */
|
|
36
|
+
brightness?: number
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Sets the contrast of the normalized image. The value range is [-100,100].
|
|
40
|
+
* */
|
|
41
|
+
contrast?: number
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Sets the maximum number of threads in one task.
|
|
45
|
+
* */
|
|
46
|
+
maxThreadsInOneTask?: number
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Sets the threshold for scaling down the input image during document detection.
|
|
50
|
+
* If the shorter edge size of the image is larger than this threshold,the original may be scaled down to reduce processing time.
|
|
51
|
+
* The default value is 2300.
|
|
52
|
+
* */
|
|
53
|
+
scaleDownThreshold?: number
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Sets the minimum ratio between the target document area and the total image area. Only those exceeding this value will be output (measured in percentages).
|
|
58
|
+
* */
|
|
59
|
+
minQuadrilateralAreaRatio?: number
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Sets the number of documents expected to be detected.
|
|
63
|
+
* */
|
|
64
|
+
expectedDocumentsCount?: number
|
|
65
|
+
}
|
package/src/ddn/index.tsx
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export * from "./DetectedQuadResultItem"
|
|
2
|
-
export * from "./DeskewedImageResultItem"
|
|
3
|
-
export * from "./EnhancedImageResultItem"
|
|
4
|
-
|
|
5
|
-
export * from "./DocumentNormalizerModule"
|
|
6
|
-
|
|
7
|
-
export * from "./EnumImageColourMode"
|
|
8
|
-
|
|
9
|
-
export * from "./ProcessedDocumentResult"
|
|
10
|
-
|
|
11
|
-
export * from "./SimplifiedDocumentNormalizerSettings"
|
|
1
|
+
export * from "./DetectedQuadResultItem"
|
|
2
|
+
export * from "./DeskewedImageResultItem"
|
|
3
|
+
export * from "./EnhancedImageResultItem"
|
|
4
|
+
|
|
5
|
+
export * from "./DocumentNormalizerModule"
|
|
6
|
+
|
|
7
|
+
export * from "./EnumImageColourMode"
|
|
8
|
+
|
|
9
|
+
export * from "./ProcessedDocumentResult"
|
|
10
|
+
|
|
11
|
+
export * from "./SimplifiedDocumentNormalizerSettings"
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {DynamsoftVersions} from '../VersionsModule'
|
|
2
|
-
import {Platform} from "react-native";
|
|
3
|
-
|
|
4
|
-
/** @hideconstructor */
|
|
5
|
-
export class ImageProcessingModule {
|
|
6
|
-
static getVersion(): string {
|
|
7
|
-
return '['+Platform.OS+']: ' + DynamsoftVersions.dip
|
|
8
|
-
}
|
|
9
|
-
}
|
|
1
|
+
import {DynamsoftVersions} from '../VersionsModule'
|
|
2
|
+
import {Platform} from "react-native";
|
|
3
|
+
|
|
4
|
+
/** @hideconstructor */
|
|
5
|
+
export class ImageProcessingModule {
|
|
6
|
+
static getVersion(): string {
|
|
7
|
+
return '['+Platform.OS+']: ' + DynamsoftVersions.dip
|
|
8
|
+
}
|
|
9
|
+
}
|
package/src/dip/index.tsx
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./ImageProcessingModule"
|
|
1
|
+
export * from "./ImageProcessingModule"
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import {Quadrilateral} from "../core";
|
|
2
|
-
/**
|
|
3
|
-
* The CharacterResult interface represents the result of a character recognition process.
|
|
4
|
-
* It contains the characters recognized (high, medium, and low confidence),
|
|
5
|
-
* their respective confidences, and the location of the character in a quadrilateral shape.
|
|
6
|
-
* */
|
|
7
|
-
export interface CharacterResult {
|
|
8
|
-
/**The character with high confidence.*/
|
|
9
|
-
characterH: string;
|
|
10
|
-
|
|
11
|
-
/**The character with medium confidence.*/
|
|
12
|
-
characterM: string;
|
|
13
|
-
|
|
14
|
-
/**The character with low confidence.*/
|
|
15
|
-
characterL: string;
|
|
16
|
-
|
|
17
|
-
/**The confidence of the character with high confidence.*/
|
|
18
|
-
characterHConfidence: number;
|
|
19
|
-
|
|
20
|
-
/**The confidence of the character with medium confidence.*/
|
|
21
|
-
characterMConfidence: number;
|
|
22
|
-
|
|
23
|
-
/**The confidence of the character with low confidence.*/
|
|
24
|
-
characterLConfidence: number;
|
|
25
|
-
|
|
26
|
-
/**The location of the character in a quadrilateral shape.*/
|
|
27
|
-
location: Quadrilateral;
|
|
28
|
-
}
|
|
1
|
+
import {Quadrilateral} from "../core";
|
|
2
|
+
/**
|
|
3
|
+
* The CharacterResult interface represents the result of a character recognition process.
|
|
4
|
+
* It contains the characters recognized (high, medium, and low confidence),
|
|
5
|
+
* their respective confidences, and the location of the character in a quadrilateral shape.
|
|
6
|
+
* */
|
|
7
|
+
export interface CharacterResult {
|
|
8
|
+
/**The character with high confidence.*/
|
|
9
|
+
characterH: string;
|
|
10
|
+
|
|
11
|
+
/**The character with medium confidence.*/
|
|
12
|
+
characterM: string;
|
|
13
|
+
|
|
14
|
+
/**The character with low confidence.*/
|
|
15
|
+
characterL: string;
|
|
16
|
+
|
|
17
|
+
/**The confidence of the character with high confidence.*/
|
|
18
|
+
characterHConfidence: number;
|
|
19
|
+
|
|
20
|
+
/**The confidence of the character with medium confidence.*/
|
|
21
|
+
characterMConfidence: number;
|
|
22
|
+
|
|
23
|
+
/**The confidence of the character with low confidence.*/
|
|
24
|
+
characterLConfidence: number;
|
|
25
|
+
|
|
26
|
+
/**The location of the character in a quadrilateral shape.*/
|
|
27
|
+
location: Quadrilateral;
|
|
28
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {DynamsoftVersions} from '../VersionsModule'
|
|
2
|
-
import {Platform} from "react-native";
|
|
3
|
-
|
|
4
|
-
/** @hideconstructor */
|
|
5
|
-
export class LabelRecognizerModule {
|
|
6
|
-
static getVersion(): string {
|
|
7
|
-
return '['+Platform.OS+']: ' + DynamsoftVersions.dlr
|
|
8
|
-
}
|
|
9
|
-
}
|
|
1
|
+
import {DynamsoftVersions} from '../VersionsModule'
|
|
2
|
+
import {Platform} from "react-native";
|
|
3
|
+
|
|
4
|
+
/** @hideconstructor */
|
|
5
|
+
export class LabelRecognizerModule {
|
|
6
|
+
static getVersion(): string {
|
|
7
|
+
return '['+Platform.OS+']: ' + DynamsoftVersions.dlr
|
|
8
|
+
}
|
|
9
|
+
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import type {TextLineResultItem} from "./TextLineResultItem";
|
|
2
|
-
import {type CapturedResultReceiver, IntermediateResultManager} from "../cvr";
|
|
3
|
-
import type {CapturedResultBase} from "../core";
|
|
4
|
-
|
|
5
|
-
/**{@link IntermediateResultManager}*/
|
|
6
|
-
/**
|
|
7
|
-
* The RecognizedTextLinesResult interface represents the result of a text recognition process.
|
|
8
|
-
* It provides access to information about the recognized text lines,
|
|
9
|
-
* the original image, and any errors that occurred during the recognition process.
|
|
10
|
-
*
|
|
11
|
-
* @see {@link CapturedResultReceiver.onRecognizedTextLinesReceived}
|
|
12
|
-
* */
|
|
13
|
-
export interface RecognizedTextLinesResult extends CapturedResultBase{
|
|
14
|
-
/**
|
|
15
|
-
* All the recognized text line result items.
|
|
16
|
-
* @see {@link TextLineResultItem}
|
|
17
|
-
* */
|
|
18
|
-
items?: Array<TextLineResultItem>;
|
|
19
|
-
}
|
|
1
|
+
import type {TextLineResultItem} from "./TextLineResultItem";
|
|
2
|
+
import {type CapturedResultReceiver, IntermediateResultManager} from "../cvr";
|
|
3
|
+
import type {CapturedResultBase} from "../core";
|
|
4
|
+
|
|
5
|
+
/**{@link IntermediateResultManager}*/
|
|
6
|
+
/**
|
|
7
|
+
* The RecognizedTextLinesResult interface represents the result of a text recognition process.
|
|
8
|
+
* It provides access to information about the recognized text lines,
|
|
9
|
+
* the original image, and any errors that occurred during the recognition process.
|
|
10
|
+
*
|
|
11
|
+
* @see {@link CapturedResultReceiver.onRecognizedTextLinesReceived}
|
|
12
|
+
* */
|
|
13
|
+
export interface RecognizedTextLinesResult extends CapturedResultBase{
|
|
14
|
+
/**
|
|
15
|
+
* All the recognized text line result items.
|
|
16
|
+
* @see {@link TextLineResultItem}
|
|
17
|
+
* */
|
|
18
|
+
items?: Array<TextLineResultItem>;
|
|
19
|
+
}
|