Skip to content

Instantly share code, notes, and snippets.

@aligkts
Created June 16, 2019 11:11
Show Gist options
  • Save aligkts/92ed8e419b3dc4c7ae4dc48bdf1b3545 to your computer and use it in GitHub Desktop.
Save aligkts/92ed8e419b3dc4c7ae4dc48bdf1b3545 to your computer and use it in GitHub Desktop.
btn_detect.setOnClickListener {
camera_view.captureImage { cameraKitView, byteArray ->
camera_view.onStop()
alertDialog.show()
var bitmap = BitmapFactory.decodeByteArray(byteArray, 0, byteArray?.size ?: 0)
bitmap = Bitmap.createScaledBitmap(bitmap, camera_view?.width ?: 0, camera_view?.height ?: 0, false)
runDetector(bitmap)
}
graphic_overlay.clear()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment