Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.BarCode for Java contains class BarCodeReader that is intended to perform barcode reading based on machine vision algorithms. This type of algorithm allows developers to implement parallel processing and thus increase recognition speed by distributing calculations across several CPU cores.
To perform multithread barcode reading, class BarCodeReader includes a special class called ProcessorSettings that allows optimizing the load of available CPU cores. Multithreading settings can be managed for all BarCodeReader objects and usually do not need special tuning.
To manage multithread barcode reading manually, developers can use the following methods:
If only single-thread barcode reading is available and the use of additional CPU cores should be blocked, developers can implement corresponding settings using setUseAllCores, UseOnlyThisCoresCount, and setMaxAdditionalAllowedThreads of class ProcessorSettings.
To fix the number of CPU cores available for barcode reading processes, developers can apply corresponding settings through setUseAllCores, setUseOnlyThisCoresCount, and setMaxAdditionalAllowedThreads methods of class ProcessorSettings.
To enable automated allocation of the maximally possible multithreading, corresponding settings can be applied. Class BarCodeReader determines the number of cores automatically.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.