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
|[setInput](consecutive-process.md#setinput)| Sets an image source to provide images for consecutive process. |
54
+
|[addCaptureStateListener()](consecutive-process.md#addcapturestatelistener)| Adds an object that listens to the state changes of the capture process. |
55
+
|[removeCaptureStateListener()](consecutive-process.md#removecapturestatelistener)| Removes an object which listens to the state changes of the capture process. |
56
+
|[addImageSourceStateListener](consecutive-process.md#addimagesourcestatelistener)| Adds an object that listens to state changes of the image source. |
57
+
|[removeImageSourceStateListener](consecutive-process.md#removeimagesourcestatelistener)| Removes an object which listens to state changes of the image source. |
58
+
|[addResultReceiver()](consecutive-process.md#addresultreceiver)| Adds an object as the receiver of captured results. |
59
+
|[removeResultReceiver()](consecutive-process.md#removeresultreceiver)| Removes an object which was added as a receiver of captured results. |
60
+
|[startCapturing()](consecutive-process.md#startcapturing)| Starts to process images consecutively. |
61
+
|[stopCapturing()](consecutive-process.md#stopcapturing)| Stops the consecutive process. |
|[initSettings()](settings.md#initsettings)| Initializes settings with either a file or a string. |
69
+
|[outputSettings](settings.md#outputsettings)| Outputs a `CaptureVisionTemplate` specified by its name. |
70
+
|[getSimplifiedSettings()](settings.md#getsimplifiedsettings)|Returns a `SimplifiedCaptureVisionSettings` object for manipulating a specified `CaptureVisionTemplate`.|
71
+
|[updateSettings()](settings.md#updatesettings)| Updates a specified `CaptureVisionTemplate` with updated an updated `SimplifiedCaptureVisionSettings` object.|
72
+
|[resetSettings()](settings.md#resetsettings)| Resets settings to factory default. |
|[initSettings()](#initsettings)| Initializes settings with either a file or a string. |
16
+
|[outputSettings](#outputsettings)| Outputs a `CaptureVisionTemplate` specified by its name. |
17
+
|[getSimplifiedSettings()](#getsimplifiedsettings)|Returns a `SimplifiedCaptureVisionSettings` object for manipulating a specified `CaptureVisionTemplate`.|
18
+
|[updateSettings()](#updatesettings)| Updates a specified `CaptureVisionTemplate` with updated an updated `SimplifiedCaptureVisionSettings` object.|
19
+
|[resetSettings()](#resetsettings)| Resets settings to factory default. |
20
20
21
21
22
22
## createInstance
@@ -35,4 +35,22 @@ A promise that resolves to the initalized `CaptureVisionRouter` object.
35
35
36
36
```js
37
37
let router =awaitDynamsoft.CVR.CaptureVisionRouter.createInstance();
38
-
```
38
+
```
39
+
40
+
## initSettings
41
+
42
+
Returns the current runtime settings.
43
+
44
+
## outputSettings
45
+
46
+
Initializes the Runtime Settings with the settings in the given JSON string.
47
+
48
+
## getSimplifiedSettings
49
+
50
+
Updates runtime settings with a given struct or a preset template.
51
+
## updateSettings
52
+
53
+
Resets all parameters to default values.
54
+
## resetSettings
55
+
56
+
Return the current RuntimeSettings in the form of a string.
0 commit comments