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 | TestingCamera2.java | 452 public void onCaptureAvailable(Image capture) { 453 if (capture.getFormat() != ImageFormat.JPEG && 454 capture.getFormat() != ImageFormat.HEIC) { 455 Log.e(TAG, "Unexpected format: " + capture.getFormat()); 458 ByteBuffer encodedBuffer = capture.getPlanes()[0].getBuffer();
|
D | CameraOps.java | 298 mSession.capture(mPreviewRequestBuilder.build(), /*listener*/null, /*handler*/null); in updatePreview() 490 mSession.capture(captureBuilder.build(), l, mOpsHandler); in minimalStillCapture() 683 void onCaptureAvailable(Image capture); in onCaptureAvailable() argument
|
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
D | CameraControlPane.java | 268 public boolean capture(CaptureRequest request) { in capture() method in CameraControlPane 271 mCurrentCaptureSession.capture(request, mResultListener, null); in capture()
|
D | RequestControlPane.java | 222 camera.capture(request);
|