Skip to content

Commit 1519bcf

Browse files
KeillionCube-J
andauthored
dbrjs bundle 10.2.1000 (#169)
* rename dynamic component * dbr bundle * dbr bundle * review half * review, vue has done * review done * v * reset value so works in React.StrictMode * 10.2.1000 official --------- Co-authored-by: Cube <877211593@qq.com>
1 parent d0e9a0f commit 1519bcf

File tree

100 files changed

+2091
-3503
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+2091
-3503
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ Get the basic features of the library working with plain/native JavaScript or wi
4242

4343
### Others
4444

45-
* [**Debug**](https://github.com/Dynamsoft/barcode-reader-javascript-samples/tree/main/other/debug#readme): Collect the actual image frames for debugging purposes.
45+
* [**Debug**](https://github.com/Dynamsoft/barcode-reader-javascript-samples/tree/main/others/debug#readme): Collect the actual image frames for debugging purposes.

hello-world/README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@ In this example, you will learn the minimum codes required to initialize and set
1313
Let's quickly break down the methods used in order:
1414

1515
- `Dynamsoft.License.LicenseManager.initLicense()`: This method initializes the license for using the SDK in the application.
16-
- `Dynamsoft.CVR.CaptureVisionRouter.createInstance()`: This method creates a `CaptureVisionRouter` object `router` which controls the entire process in three steps:
16+
- `Dynamsoft.CVR.CaptureVisionRouter.createInstance()`: This method creates a `CaptureVisionRouter` object `cvRouter` which controls the entire process in three steps:
1717
- **Retrieve Images from the Image Source**
18-
- `router` connects to the image source through the [`Image Source Adapter`](https://www.dynamsoft.com/capture-vision/docs/core/architecture/input.html#image-source-adapter?lang=js) interface with the method `setInput()`.
18+
- `cvRouter` connects to the image source through the [`Image Source Adapter`](https://www.dynamsoft.com/capture-vision/docs/core/architecture/input.html#image-source-adapter?lang=js) interface with the method `setInput()`.
1919
```js
20-
router.setInput(cameraEnhancer);
20+
cvRouter.setInput(cameraEnhancer);
2121
```
2222
> The image source in our case is a CameraEnhancer object created with `Dynamsoft.DCE.CameraEnhancer.createInstance(view)`
2323
- **Coordinate Image-Processing Tasks**
24-
- The coordination happens behind the scenes. `router` starts the process by specifying a preset template "ReadSingleBarcode" with the method `startCapturing()`.
24+
- The coordination happens behind the scenes. `cvRouter` starts the process by specifying a preset template "ReadSingleBarcode" with the method `startCapturing()`.
2525
```js
26-
router.startCapturing("ReadSingleBarcode");
26+
cvRouter.startCapturing("ReadSingleBarcode");
2727
```
2828
- **Dispatch Results to Listening Objects**
29-
- The processing results are returned through the [`CapturedResultReceiver`](https://www.dynamsoft.com/capture-vision/docs/core/architecture/output.html#captured-result-receiver?lang=js) interface. The `CapturedResultReceiver` object `resultReceiver` is registered to `router` via the method `addResultReceiver()`.
29+
- The processing results are returned through the [`CapturedResultReceiver`](https://www.dynamsoft.com/capture-vision/docs/core/architecture/output.html#captured-result-receiver?lang=js) interface. The `CapturedResultReceiver` object `resultReceiver` is registered to `cvRouter` via the method `addResultReceiver()`.
3030
```js
31-
router.addResultReceiver(resultReceiver);
31+
cvRouter.addResultReceiver(resultReceiver);
3232
```
33-
- Also note that reading from video is extremely fast and there could be many duplicate results. We can use a `MultiFrameResultCrossFilter` object with result deduplication enabled to filter out the duplicate results. The object is registered to `router` via the method `addResultFilter()`.
33+
- Also note that reading from video is extremely fast and there could be many duplicate results. We can use a `MultiFrameResultCrossFilter` object with result deduplication enabled to filter out the duplicate results. The object is registered to `cvRouter` via the method `addResultFilter()`.
3434
```js
35-
router.addResultFilter(filter);
35+
cvRouter.addResultFilter(filter);
3636
```
3737

3838
> Read more on [Capture Vision Router](https://www.dynamsoft.com/capture-vision/docs/core/architecture/#capture-vision-router).

hello-world/angular/.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# See http://help.github.com/ignore-files/ for more about ignoring files.
1+
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
22

33
# Compiled output
44
/dist
@@ -40,3 +40,5 @@ testem.log
4040
# System files
4141
.DS_Store
4242
Thumbs.db
43+
44+
package-lock.json

0 commit comments

Comments
 (0)