You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BarcodeDetector barcodeDetector = new BarcodeDetector.Builder(context).build();
BarcodeTrackerFactory barcodeFactory = new BarcodeTrackerFactory(mGraphicOverlay, this);
barcodeDetector.setProcessor(
new MultiProcessor.Builder<>(barcodeFactory).build())
and then to get the results
@Override
public void onBarcodeDetected(Barcode barcode) {
//do something with barcode data returned
}
I am facing the below issue while using the google vision api for scanning qr code.
Detector processor must first be set with setProcessor in order to receive detection results. site:stackoverflow.com
can you please help me on this?
The camera preview is not opening at the first time, also I am unable to update the UI once the scan is successful.
Below is my code
{
}
The text was updated successfully, but these errors were encountered: