Table of Contents

Class BarcodeAccumulationConfiguration

Namespace
ScanbotSDK.MAUI.Barcode.Core
Assembly
ScanbotSDK.Shared.dll

Configuration for how to accumulate results.

public class BarcodeAccumulationConfiguration
Inheritance
BarcodeAccumulationConfiguration
Inherited Members

Properties

AccumulationTime

The time in milliseconds to accumulate barcodes across multiple frames.

Default is 500

public int AccumulationTime { get; set; }

Property Value

int

Method

The method how to display barcodes from previous frames.

Default is INTERPOLATE_BY_CAMERA

public BarcodeAccumulationMethod Method { get; set; }

Property Value

BarcodeAccumulationMethod

MinConfirmationsStandaloneEAN

In case that ean/upc both with and without extensions are allowed, we require confirmations to consider a standalone EAN or UPC (i.e. without extension) as valid.

Default is 1

public int MinConfirmationsStandaloneEAN { get; set; }

Property Value

int

RemoveUnconnectedResults

If true, the results from previous frames that are not connected to results on the current frame will be removed. This is should be enabled when large camera movements are expected. For small camera movements, the option can be disabled.

Default is true

public bool RemoveUnconnectedResults { get; set; }

Property Value

bool

Methods

FromJson(string)

public static BarcodeAccumulationConfiguration FromJson(string rawJson)

Parameters

rawJson string

Returns

BarcodeAccumulationConfiguration