Searched refs:capture (Results 1 – 5 of 5) sorted by relevance
/pdk/apps/TestingCamera2/ |
D | README.txt | 33 5. Start capturing images with either 'capture' (one-shot) or 'repeat' (continuous) buttons on 54 configuration, it cannot be used as a target for capture requests to that camera. 63 This is the basic still capture output, used for JPEG or uncompressed data that needs to be 78 Request panes are used to set up the configuration for a single camera capture request. It includes 79 all the settings required for the camera device to capture a frame of data. It contains selectors 88 request, the request can be sent to the camera with either the capture or repeat buttons. 90 Capture is a one-shot operation, which simply instructs the camera to capture a single frame of 96 repeating, other requests can still use the 'capture' action to trigger single captures. Another 113 such as implementing simple autofocus operation, still capture sequencing, or other high-level
|
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/v1/ |
D | CameraOps.java | 259 mSession.capture(mPreviewRequestBuilder.build(), /*listener*/null, /*handler*/null); in updatePreview() 416 mSession.capture(captureBuilder.build(), l, mOpsHandler); in minimalJpegCapture() 607 void onCaptureAvailable(Image capture); in onCaptureAvailable() argument
|
D | TestingCamera2.java | 411 public void onCaptureAvailable(Image capture) { 412 if (capture.getFormat() != ImageFormat.JPEG) { 413 Log.e(TAG, "Unexpected format: " + capture.getFormat()); 416 ByteBuffer jpegBuffer = capture.getPlanes()[0].getBuffer();
|
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
D | CameraControlPane.java | 267 public boolean capture(CaptureRequest request) { in capture() method in CameraControlPane 270 mCurrentCaptureSession.capture(request, mResultListener, null); in capture()
|
D | RequestControlPane.java | 207 camera.capture(request);
|