Created
June 10, 2020 05:36
-
-
Save husaynhakeem/dab9f7a9c5723efceef1e1dd40f5075b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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