Skip to content

Instantly share code, notes, and snippets.

@ashwin-sp
Created February 22, 2018 07:30
Show Gist options
  • Save ashwin-sp/49c512927a3b6a652f33edcdef49b9e6 to your computer and use it in GitHub Desktop.
Save ashwin-sp/49c512927a3b6a652f33edcdef49b9e6 to your computer and use it in GitHub Desktop.
override fun onImageAvailable(reader: ImageReader?) {
lateinit var bitmap: Bitmap
reader?.acquireNextImage().use
{
image -> bitmap = imagePreprocessor?.preprocessImage(image)!!
}
runOnUiThread
{
imageView.setImageBitmap(bitmap)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment