Interface IBarcodeRecognizer
- Namespace
- ScanbotSDK.MAUI
- Assembly
- ScanbotSDK.Shared.dll
This class is reponsible to detect barcodes on image files and returns the barcode.
Methods
DetectBarcodesFrom(PlatformImage)
Search and decode specified types of bar codes on given image.
Parameters
image
PlatformImage
Returns
- Task<Barcode
Item []>
DetectBarcodesFrom(PlatformImage, BarcodeRecognizerConfiguration)
Search and decode specified types of bar codes on given image.
Parameters
image
PlatformImage options
BarcodeRecognizer Configuration
Returns
DetectBarcodesFrom(IEnumerable<PlatformImage>, BarcodeRecognizerConfiguration)
Search and decode specified types of bar codes on given images.
Task<BarcodeItem[]> DetectBarcodesFrom(IEnumerable<PlatformImage> images, BarcodeRecognizerConfiguration options)
Parameters
images
IEnumerable<PlatformImage >options
BarcodeRecognizer Configuration
Returns
- Task<Barcode
Item []>