Home | History | Annotate | Download | only in camera

Lines Matching full:hardware

34 <p>In this lesson, we discuss how to control the camera hardware directly using
44 <p>Getting an instance of the {@link android.hardware.Camera} object is the first step in the
46 recommended way to access the camera is to open {@link android.hardware.Camera} on a separate thread
53 <p>Calling {@link android.hardware.Camera#open Camera.open()} throws an
83 legacy API and call {@link android.hardware.Camera#open open()} without an
98 data from the camera hardware to the application.</p>
122 <p>The preview class must be passed to the {@link android.hardware.Camera} object before the live
131 android.hardware.Camera#startPreview Camera.startPreview()} is called by the
190 android.hardware.Camera#setDisplayOrientation setCameraDisplayOrientation()} method lets you change
197 <p>Use the {@link android.hardware.Camera#takePicture Camera.takePicture()}
199 android.hardware.Camera.PictureCallback} and {@link
200 android.hardware.Camera.ShutterCallback} objects and pass them into {@link
201 android.hardware.Camera#takePicture Camera.takePicture()}.</p>
204 android.hardware.Camera.PreviewCallback} that implements {@link
205 android.hardware.Camera.PreviewCallback#onPreviewFrame onPreviewFrame()}. For
207 delayed action to call {@link android.hardware.Camera#takePicture
238 particular, you must release the {@link android.hardware.Camera} object, or you risk crashing other