Table of Contents

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

Task<Barcode[]>

DetectBarcodesAsync(PlatformImage, BarcodeDetectionConfiguration)

Search and decode specified types of bar codes on given image.

Task<Barcode[]> DetectBarcodesAsync(PlatformImage image, BarcodeDetectionConfiguration options)

Parameters

image PlatformImage
options BarcodeDetectionConfiguration

Returns

Task<Barcode[]>

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

Returns

Task<Barcode[]>