Interface IBarcodeRecognizer
- Namespace
- ScanbotSDK.MAUI
- Assembly
- ScanbotSDK.Shared.dll
This class is reponsible to detect barcodes on image files and returns the barcode.
public interface IBarcodeRecognizer
Methods
DetectBarcodesFrom(PlatformImage)
Search and decode specified types of bar codes on given image.
Task<BarcodeItem[]> DetectBarcodesFrom(PlatformImage image)
Parameters
image
PlatformImage
Returns
- Task<BarcodeItem[]>
DetectBarcodesFrom(PlatformImage, BarcodeRecognizerConfiguration)
Search and decode specified types of bar codes on given image.
Task<BarcodeItem> DetectBarcodesFrom(PlatformImage image, BarcodeRecognizerConfiguration options)
Parameters
image
PlatformImageoptions
BarcodeRecognizerConfiguration
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
BarcodeRecognizerConfiguration
Returns
- Task<BarcodeItem[]>