The focusing status of the camera's lens.
class LensFocusStatus
Description:The focusing status of the camera's lens.
enum LensFocusStatus
public enum LensFocusStatus {
/**
* The lens is focusing to the target.
*/
FUZZY("Fuzzy"),
/**
* The lens succeeds to focus on the target.
*/
CLEAR("Clear"),
/**
* The lens focus status is unknown.
*/
UNKNOWN("unknown");
}
Description:The focusing status of the camera's lens.