I would like to do face detection & recognition using KotlinDL.
As far as I understand I will need
ArcFace for Face Recognition and as a preprocessing detect the faces first.
Therefore I'm looking for a MTCNN face detector for Kotlin. At best it's an implementation that does not require a Bitmap or other like Android-specific classes and just takes a JPG stream to detect the coordinates. I want to use it on the JVM within a compose-jb app.
Does someone know something like that?
https://github.com/tzolov/mtcnn-java is the closest thing I found so far, but it's abandoned and seems to have a lot of depenencies.
Is there something easier to use for that?