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
I was trying to use this library to scan barcode as well as to capture images. I can see there is event for the camera view which actually captures the image but I can't see any method exposed which will trigger this event.
I have added cameraview and a button to capture image.
As per the documentation
I am setting the CaptureNextFrame = true on click of the button in Main Thread but OnImageCaptured is never getting called.
In the latest release note it is written as
OnImageCaptured is now triggered AFTER OnDetectionFinished and only if BarcodeResults.Count > 0
So looks like this library is only for scanning. We cannot use it as Camera for taking pics?
The text was updated successfully, but these errors were encountered:
You need to set CaptureNextFrame to true and then next time when the barcode(s) is detected it will fire OnDetectionFinished with barcode data first and OnImageCaptured with the frame image after.
Note that after OnImageCaptured returns CaptureNextFrame will be set to false so you need to set it to true if you want to capture additional images.
I was trying to use this library to scan barcode as well as to capture images. I can see there is event for the camera view which actually captures the image but I can't see any method exposed which will trigger this event.
I have added cameraview and a button to capture image.
As per the documentation
I am setting the CaptureNextFrame = true on click of the button in Main Thread but OnImageCaptured is never getting called.
In the latest release note it is written as
OnImageCaptured is now triggered AFTER OnDetectionFinished and only if BarcodeResults.Count > 0
So looks like this library is only for scanning. We cannot use it as Camera for taking pics?
The text was updated successfully, but these errors were encountered: