Courtesy: GitHub
Warning: file_get_contents(../git/googlesamples/android-vision/visionSamples/FaceTracker/README.md): failed to open stream: No such file or directory in /var/www/appsrox.com/public_html/ide/content.php on line 10

compileSdkVersion 24

applicationId "com.google.android.gms.samples.vision.face.facetracker"

minSdkVersion 9

targetSdkVersion 24

versionCode 1

versionName "1.0"

compile fileTree(dir: 'libs', include: ['*.jar'])

compile 'com.android.support:support-v4:24.2.0'

compile 'com.android.support:design:24.2.0'

compile 'com.google.android.gms:play-services-vision:9.4.0+'

package com.google.android.gms.samples.vision.face.facetracker

versionCode 1

versionName 1

uses-permission

  • android.permission.CAMERA

FaceTrackerActivity

Activity for the face tracker app. This app detects faces with the rear facing camera, and draws overlay graphics to indicate the position, size, and ID of each face.

Initializes the UI and initiates the creation of a face detector.

Handles the requesting of the camera permission. This includes showing a "Snackbar" message of why the permission is needed then sending the request.

Creates and starts the camera. Note that this uses a higher resolution in comparison to other detection examples to enable the barcode detector to detect small barcodes at long distances.

Restarts the camera.

Stops the camera.

Releases the resources associated with the camera source, the associated detector, and the rest of the processing pipeline.

Callback for the result from requesting permissions. This method is invoked for every call on {@link #requestPermissions(String[], int)}.

Note: It is possible that the permissions request interaction with the user is interrupted. In this case you will receive empty permissions and results arrays which should be treated as a cancellation.

* @param requestCode The request code passed in {@link #requestPermissions(String[], int)}. @param permissions The requested permissions. Never null. @param grantResults The grant results for the corresponding permissions which is either {@link PackageManager#PERMISSION_GRANTED} or {@link PackageManager#PERMISSION_DENIED}. Never null. @see #requestPermissions(String[], int)

Starts or restarts the camera source, if it exists. If the camera source doesn't exist yet (e.g., because onResume was called before the camera source was created), this will be called again when the camera source is created.

Factory for creating a face tracker to be associated with a new face. The multiprocessor uses this factory to create face trackers as needed -- one for each individual.

Face tracker for each detected individual. This maintains a face graphic within the app's associated face overlay.

Start tracking the detected face instance within the face overlay.

Update the position/characteristics of the face within the overlay.

Hide the graphic when the corresponding face was not detected. This can happen for intermediate frames temporarily (e.g., if the face was momentarily blocked from view).

Called when the face is assumed to be gone for good. Remove the graphic annotation from the overlay.