Reputation: 1032
As in title. How to make ZSL still picture with Camera 2 API? Should I only use TEMPLATE_ZERO_SHUTTER_LAG
? Should I also add CONTROL_ENABLE_ZSL in CaptureRequest
? Should I do precapture sequence before taking still? Currently I do not have any particular code, just thinking how do it.
Upvotes: 1
Views: 1207
Reputation: 3782
There is IMHO good example of using Camera 2 API by Android Open Source Project:
It uses TEMPLATE_ZERO_SHUTTER_LAG
but does not use CONTROL_ENABLE_ZSL
.
Upvotes: 1