``` cameraSource.takePicture({}, { bytes -> ...
# android
v
Copy code
cameraSource.takePicture({}, { bytes ->
                        launch(UI) {
                            async(CommonPool) {
                                detect(bytes)
                            }.await()
                        }
                    })