Interface IBarcodeDetector
- Namespace
- ScanbotSDK.MAUI.Barcode
- Assembly
- ScanbotSDK.Shared.dll
This class is reponsible to detect barcodes on image files and returns the barcode.
public interface IBarcodeDetector
Methods
DetectBarcodesAsync(PlatformImage)
Search and decode specified types of bar codes on given image.
Task<Barcode[]> DetectBarcodesAsync(PlatformImage image)
Parameters
image
PlatformImage
Returns
DetectBarcodesAsync(PlatformImage, BarcodeDetectionConfiguration)
Search and decode specified types of bar codes on given image.
Task<Barcode[]> DetectBarcodesAsync(PlatformImage image, BarcodeDetectionConfiguration options)
Parameters
image
PlatformImageoptions
BarcodeDetectionConfiguration
Returns
DetectBarcodesAsync(PlatformImage[], BarcodeDetectionConfiguration)
Search and decode specified types of bar codes on given images.
Task<Barcode[]> DetectBarcodesAsync(PlatformImage[] images, BarcodeDetectionConfiguration options = null)
Parameters
images
PlatformImage[]options
BarcodeDetectionConfiguration