本文整理匯總了Java中com.google.android.gms.vision.Detector.release方法的典型用法代碼示例。如果您正苦於以下問題:Java Detector.release方法的具體用法?Java Detector.release怎麽用?Java Detector.release使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.google.android.gms.vision.Detector
的用法示例。
在下文中一共展示了Detector.release方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: setDetector
import com.google.android.gms.vision.Detector; //導入方法依賴的package包/類
public void setDetector(){
FaceDetector detector = new FaceDetector.Builder(this)
.setTrackingEnabled(true)
.setLandmarkType(FaceDetector.ALL_LANDMARKS)
.setMode(FaceDetector.ACCURATE_MODE)
.build();
Detector<Face> safeDetector = new SafeFaceDetector(detector);
if (!safeDetector.isOperational()) {
Toast.makeText(this, "Detector are having issues", Toast.LENGTH_LONG).show();
} else {
Frame frame = new Frame.Builder().setBitmap(mbitmap).build();
mFaces = safeDetector.detect(frame);
safeDetector.release();
}
}
示例2: onCreate
import com.google.android.gms.vision.Detector; //導入方法依賴的package包/類
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_photo_viewer);
InputStream stream = getResources().openRawResource(R.raw.face);
Bitmap bitmap = BitmapFactory.decodeStream(stream);
// A new face detector is created for detecting the face and its landmarks.
//
// Setting "tracking enabled" to false is recommended for detection with unrelated
// individual images (as opposed to video or a series of consecutively captured still
// images). For detection on unrelated individual images, this will give a more accurate
// result. For detection on consecutive images (e.g., live video), tracking gives a more
// accurate (and faster) result.
//
// By default, landmark detection is not enabled since it increases detection time. We
// enable it here in order to visualize detected landmarks.
FaceDetector detector = new FaceDetector.Builder(getApplicationContext())
.setTrackingEnabled(false)
.setLandmarkType(FaceDetector.ALL_LANDMARKS)
.build();
// This is a temporary workaround for a bug in the face detector with respect to operating
// on very small images. This will be fixed in a future release. But in the near term, use
// of the SafeFaceDetector class will patch the issue.
Detector<Face> safeDetector = new SafeFaceDetector(detector);
// Create a frame from the bitmap and run face detection on the frame.
Frame frame = new Frame.Builder().setBitmap(bitmap).build();
SparseArray<Face> faces = safeDetector.detect(frame);
if (!safeDetector.isOperational()) {
// Note: The first time that an app using face API is installed on a device, GMS will
// download a native library to the device in order to do detection. Usually this
// completes before the app is run for the first time. But if that download has not yet
// completed, then the above call will not detect any faces.
//
// isOperational() can be used to check if the required native library is currently
// available. The detector will automatically become operational once the library
// download completes on device.
Log.w(TAG, "Face detector dependencies are not yet available.");
// Check for low storage. If there is low storage, the native library will not be
// downloaded, so detection will not become operational.
IntentFilter lowstorageFilter = new IntentFilter(Intent.ACTION_DEVICE_STORAGE_LOW);
boolean hasLowStorage = registerReceiver(null, lowstorageFilter) != null;
if (hasLowStorage) {
Toast.makeText(this, R.string.low_storage_error, Toast.LENGTH_LONG).show();
Log.w(TAG, getString(R.string.low_storage_error));
}
}
FaceView overlay = (FaceView) findViewById(R.id.faceView);
overlay.setContent(bitmap, faces);
// Although detector may be used multiple times for different images, it should be released
// when it is no longer needed in order to free native resources.
safeDetector.release();
}