Recently Iโve been doing some simple face detection in a Scala-based project. The โindustry standardโ for such kind of tasks is OpenCV; face detection is one of its basic use-cases.
However OpenCV is written in C/C++, so obviously to use it from Scala a JVM interface is needed. One of such interfaces is JavaCV, which wraps several computer-vision related libraries, one of them being OpenCV. The process of actually doing face detection from Java using JavaCV is fairly well documented (see for example here), but what I had some trouble with, is getting SBT to get the JavaCV jars from the Maven central repository. There are two steps. First, you need to add the dependency to your build settings:
val javacv = "com.googlecode.javacv" % "javacv" % "0.7" classifier "linux-x86_64" classifier "macosx-x86_64" classifier "" libraryDependencies += javacv
The unusual thing here are the classifiers. To get the basic jars you need an empty classifier, but you also need some platform-dependent bindings to the native libraries. Here Iโm including bindings for OSX (my dev platform) and Linux (my deployment platform). There are also bindings for Windows, e.g. windows-x86. But that wonโt get you all the jars yet. The second SBT setting you must modify is:
classpathTypes += "maven-plugin"
That is because some of the dependent jars (javacpp) are packaged with the maven-plugin packaging. And as SBT isnโt Maven, they wonโt be included by default. With the two settings above, you should be all set to start doing computer vision with JavaCV, SBT and Scala.
Thank you!
We will contact you soon.
Adam WarskiFebruary 7th, 2014Last Updated: February 6th, 2014

This site uses Akismet to reduce spam. Learn how your comment data is processed.