Statistics
| Branch: | Tag: | Revision:

securesmartcam / app / src / main / java / org / witness / obscuracam / photo / detect / FaceDetection.java @ 41590feb

History | View | Annotate | Download (314 Bytes)

1
package org.witness.obscuracam.photo.detect;
2

    
3
import java.util.ArrayList;
4

    
5
import android.graphics.Bitmap;
6

    
7
public interface FaceDetection {
8
        int findFaces(Bitmap bmp); // returns number of faces
9
        ArrayList<DetectedFace> getFaces(int numberFound); // returns array of rectangles of found faces
10
        void release ();
11
}