Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save husaynhakeem/dab9f7a9c5723efceef1e1dd40f5075b to your computer and use it in GitHub Desktop.
Save husaynhakeem/dab9f7a9c5723efceef1e1dd40f5075b to your computer and use it in GitHub Desktop.
class FaceDetectorInitializer : Initializer<FaceDetector> {
override fun create(context: Context): FaceDetector {
val faceDetector = /* Set up and configure the face detector */
return faceDetector
}
override fun dependencies() = listOf(CameraInitializer::class.java)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment