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
imagePlatformImage
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
imagePlatformImageoptionsBarcodeRecognizerConfiguration
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
imagesIEnumerable<PlatformImage>optionsBarcodeRecognizerConfiguration
Returns
- Task<BarcodeItem[]>