Package io.scanbot.sdk.barcode.ui
Interface IBarcodeScanCountViewController
-
- All Implemented Interfaces:
-
io.scanbot.sdk.ui.ICameraViewController
public interface IBarcodeScanCountViewController implements ICameraViewController
Allows to control the state and the behavior of the IBarcodeCounterView
-
-
Method Summary
Modifier and Type Method Description abstract Unit
scanAndCount()
Trigger this method to run detection on the next cameraFrame or snapped image abstract Unit
clearCountedBarcodes()
Clear all barcodes from the scanning session abstract Unit
continueScanning()
Prepare view to count next bach of the barcodes abstract Unit
setCaptureMode(CaptureMode mode)
Set whether to run counter on Live Frame (smaller resolution, but faster), or on captured image (much slower, but potentially better quality) -
-
Method Detail
-
scanAndCount
abstract Unit scanAndCount()
Trigger this method to run detection on the next cameraFrame or snapped image
-
clearCountedBarcodes
abstract Unit clearCountedBarcodes()
Clear all barcodes from the scanning session
-
continueScanning
abstract Unit continueScanning()
Prepare view to count next bach of the barcodes
-
setCaptureMode
abstract Unit setCaptureMode(CaptureMode mode)
Set whether to run counter on Live Frame (smaller resolution, but faster), or on captured image (much slower, but potentially better quality)
-
-
-
-