/**
  * Releases the resources associated with the camera source, the associated detectors, and the
  * rest of the processing pipeline.
  */
 @Override
 protected void onDestroy() {
   super.onDestroy();
   if (mPreview != null) {
     mPreview.release();
   }
 }