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
If you need additional checks on Capture result images, you can use [CaptureFilter](https://blinkid.github.io/capture-android/capture-ux/com.microblink.capture.analysis/-capture-filter/index.html). This feature is optional.
334
+
335
+
Capture filter can be used with an external validation tool, such as `BlinkID`, to confirm that the image is of sufficient quality before ending the scanning process. During this, the scanning session is not stopping or restarting, therefore not causing friction on the end-user side.
336
+
337
+
Capture filter filters capture results after each successful side capture (accepts or drops captured side). If the captured image is filtered out, the capture process is restarted for the current side and the same side is captured again in the same camera session.
338
+
339
+
You can set your implementation of the `CaptureFilter` on the `CaptureSettings` like this:
340
+
341
+
```kotlin
342
+
val captureSettings = CaptureSettings(
343
+
filterSettings = FilterSettings (
344
+
// your implementation of the CaptureFilter interface
345
+
YourCaptureFilterImplementation()
346
+
)
347
+
)
348
+
349
+
```
350
+
351
+
We are providing one specific implementation of the `CaptureFilter` which uses the BlinkIDSDK and accepts document images that are extractable by the BlinkIDSDK. Usage of the `BlinkIdCaptureFilter` is described in the following section.
352
+
353
+
## <a name="blinkid-capture-filter"></a> Using provided `BlinkIdCaptureFilter`
354
+
355
+
[BlinkIdCaptureFilter](https://blinkid.github.io/capture-android/capture-filter-blinkid/com.microblink.capture.filter.blinkid/-blink-id-capture-filter/index.html) implementation uses BlinkIDSDKfor filtering of capture results. For each successful side capture, this filter runs BlinkID extraction on the captured side image and side capture results are accepted only if the image is extractable by the BlinkIDSDK.
356
+
357
+
To use the `BlinkIdCaptureFilter`, you first need to add additional dependency in module level build.gradle(.kts):
358
+
359
+
360
+
```kotlin
361
+
dependencies {
362
+
// this will also add transitive dependency to the BlinkID SDK
Because `BlinkIdCaptureFiler` internally uses BlinkIDSDK, you will also need to set the valid license key for the BlinkIDSDK. We recommend that you extend [AndroidApplication class](https://developer.android.com/reference/android/app/Application.html) and set the license in [onCreate callback](https://developer.android.com/reference/android/app/Application.html#onCreate()), it can be done in the same place asfor the CaptureSDK license key:
368
+
369
+
370
+
```kotlin
371
+
public class MyApplication:Application() {
372
+
override fun onCreate() {
373
+
// setting license key for the Capture SDK like before
# <a name="direct-api"></a> Completely custom UX with DirectAPI (advanced)
329
398
330
399
When using the **DirectAPI**, you are responsible for preparing input image stream (or static images) for analysis and building a completely custom UX from scratch based on the image-by-image feedback from the SDK.
@@ -347,7 +416,7 @@ Add _capture-core_ library as a dependency in module level build.gradle(.kts):
In case of problems with SDK integration, first make sure that you have followed [integration instructions](#sdk-integration) and [device requirements](#device-requirements). If you're still having problems, please contact us at [help.microblink.com](http://help.microblink.com).
417
486
487
+
### <a name="dynamicCppRuntime"></a> Resolving conflict on `libc++_shared.so`
488
+
489
+
_Capture_ contains native code that depends on the C++ runtime. This runtime is provided by the `libc++_shared.so`, which needs to be available in your app that is using _Capture_. However, the same file is also used by various other libraries that contain native components. If you happen to integrate both such library together with _Capture_in your app, your build will fail with an error similar to this one:
490
+
491
+
```
492
+
* What went wrong:
493
+
2 files found with path 'lib/arm64-v8a/libc++_shared.so' from inputs:
The error states that multiple different dependencies provide the same file `lib/arm64/libc++_shared.so` (in this case, Capture and BlinkID).
499
+
500
+
You can resolve this issue by making sure that the dependency that uses _newer version of `libc++_shared.so`_ is listed first in your dependency list, and then, simply add the following to your `build.gradle`:
The code above will always select the first `libc++_shared.so` from your dependency list, so make sure that the dependency that uses the *latest version of `libc++_shared.so`* is listed first. Thisis because `libc++_shared.so` is backward-compatible, but not forward-compatible. This means that, e.g. `libBlinkID.so` built against `libc++_shared.so` from NDK r24 will work without problems when you package it together with `libc++_shared.so` from NDK r26, but will crash when you package it together with `libc++_shared.so` from NDK r21. Thisistruefor all your native dependencies.
516
+
418
517
### Other problems
419
518
If you are having problems like undesired behaviour on specific device(s), crashes inside _Capture_SDK or anything unmentioned, please contact us at [help.microblink.com](http://help.microblink.com) describing your problem and provide following information:
Copy file name to clipboardexpand all lines: Release notes.md
+24
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,29 @@
1
1
# Release notes
2
2
3
+
## v1.4.0
4
+
5
+
### Improvements
6
+
7
+
- Introduced **CaptureFilter**:
8
+
- If you need additional checks on Capture result images, you can use [CaptureFilter](https://blinkid.github.io/capture-android/capture-ux/com.microblink.capture.analysis/-capture-filter/index.html). This feature is optional.
9
+
- Capture filter filters capture results after each successful side capture (accepts or drops captured side). If the captured image is filtered out, the capture process is restarted for the current side and the same side is captured again in the same camera session.
10
+
- We are providing one specific implementation of the `CaptureFilter` in `capture-filter-blinkid` library which uses the BlinkID SDK and accepts document images that are extractable by the BlinkID SDK.
11
+
- Updated introduction dialog with new image and "Turn your phone to landscape mode" message
12
+
- Introduced `AnalyzerRunner.resetSide` function used to retake the current document side.
13
+
- Upgraded CameraX dependency to the latest stable version v1.3.4.
14
+
15
+
16
+
### Other changes
17
+
18
+
- Native code is now built using NDK r27
19
+
20
+
### Bugfixes
21
+
22
+
- Fix for "Rotate card or turn phone to landscape" animation being displayed too often and even when it shouldn't be:
23
+
- improved `DocumentFramingStatus.CameraOrientationUnsuitable` (if you are using the Direct API)
24
+
- fix for case when document met all requirements but it was too close to the camera
25
+
- fix for case when passport is scanned in landscape
0 commit comments