1

opencv cpp で facedetection を使用して、Android アプリで使用したいと考えています。jni を正常にコンパイルしました。しかし、ハーカスケードをどのように使用するのだろうか。SDカードに保存してそこから読み取ることができます。プロジェクトから直接xmlファイルを使用できる方法は他にありますか?

4

1 に答える 1

0

There is a c++ example called facedetect coming with the opencv superpack. I'm running OpenCV-2.3.1 myself and it's located in this folder: ../opencv-2.3.1/samples/c/

The sample uses haarcascades and this might be your best bet for facedetection. If you can use the Android NDK with proper JNI calls from a .cpp file then you shouldn't have any problems to use this sample.

I'm working on a similar thing myself but haven't tried it myself yet. Should be implementing the thing somewhere next week but can't guarantee it. Let me know if this works out for you

于 2012-04-19T10:03:04.257 に答える