Notice: This documentation is archived. For the latest product features and documentation, please visit Dynamsoft Capture Vision Documentation.
ScanSettings
Interface for scan behaviour customization.
Attributes
Attribute | Type |
---|---|
intervalTime |
number |
intervalTime?: number
Scan interval used to allow the library to release the CPU periodically. Measured in ms. Must be a positive value ( > 0 ).
let scanSettings = await normalizer.getScanSettings();
scanSettings.intervalTime = 100; // 100ms
await normalizer.updateScanSettings(scanSettings);