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