在之前的扩展视图系统 (EVS) 1.0 版本中,相机设备被视为只读设备,因此,没有方法能够让应用更改相机控制参数(例如缩放或亮度)。
由于这可能会限制 EVS 应用的功能,因此新的 EVS 1.1 引入了新方法,并使应用能够对多个相机控制参数进行编程,所有这些参数都在 enum CameraParam
中定义
/** * EVS Camera Parameter */ enum CameraParam : uint32_t { /** * The brightness of image frames */ BRIGHTNESS, /** * The contrast of image frames */ CONTRAST, /** * Automatic gain/exposure control */ AUTOGAIN, /** * Gain control */ GAIN, /** * Automatic Whitebalance */ AUTO_WHITE_BALANCE, /** * Manual white balance setting as a color temperature in Kelvin. */ WHITE_BALANCE_TEMPERATURE, /** * Image sharpness adjustment */ SHARPNESS, /** * Auto Exposure Control modes; auto, manual, shutter priority, or * aperture priority. */ AUTO_EXPOSURE, /** * Manual exposure time of the camera */ ABSOLUTE_EXPOSURE, /** * Set the focal point of the camera to the specified position. This * parameter may not be effective when auto focus is enabled. */ ABSOLUTE_FOCUS, /** * Enables continuous automatic focus adjustments. */ AUTO_FOCUS, /** * Specify the objective lens focal length as an absolute value. */ ABSOLUTE_ZOOM, };
方法定义为:
/** * Requests to be a master client. * * When multiple clients subscribe to a single camera hardware and one of * them adjusts a camera parameter such as the contrast, it may disturb * other clients' operations. Therefore, the client must call this method * to be a master client. When it becomes a master, it can * change camera parameters until either it dies or explicitly gives up the * role. * * @return result EvsResult::OK if a master role is granted. * EvsResult::OWNERSHIP_LOST if there is already a * master client. */ setMaster() generates (EvsResult result); /** * Sets to be a master client forcibly. * * The client, which owns the display, has a high priority and can take over * a master role from other clients without the display. * * @param display IEvsDisplay handle. If this is valid, the calling client * is considered as the high priority client and therefore * it would take over a master role. * * @return result EvsResult::OK if a master role is granted. * EvsResult::OWNERSHIP_LOST if there is already a * master client with the display. */ forceMaster(IEvsDisplay display) generates (EvsResult result); /** * Retires from a master client role. * * @return result EvsResult::OK if this call is successful. * EvsResult::INVALID_ARG if the caller client is not a * master client. */ unsetMaster() generates (EvsResult result); /** * Retrieves a list of parameters this camera supports. * * @return params A list of CameraParam that this camera supports. */ getParameterList() generates (vec<CameraParam> params); /** * Requests a valid value range of a camera parameter * * @param id The identifier of camera parameter, CameraParam enum. * * @return min The lower bound of the valid parameter value range. * @return max The upper bound of the valid parameter value range. * @return step The resolution of values in valid range. */ getIntParameterRange(CameraParam id) generates (int32_t min, int32_t max, int32_t step); /** * Requests to set a camera parameter. * * @param id The identifier of camera parameter, * CameraParam enum. * value A desired parameter value. * @return result EvsResult::OK if it succeeds to set a parameter. * EvsResult::INVALID_ARG if either a requested * parameter is not supported or a given value is out * of bounds. * effectiveValue A programmed parameter value. This may differ * from what the client gives if, for example, the * driver does not support a target parameter. */ setIntParameter(CameraParam id, int32_t value) generates (EvsResult result, int32_t effectiveValue); /** * Retrieves a value of given camera parameter. * * @param id The identifier of camera parameter, CameraParam enum. * @return result EvsResult::OK if it succeeds to read a parameter. * EvsResult::INVALID_ARG if either a requested parameter is * not supported. * value A value of requested camera parameter. */ getIntParameter(CameraParam id) generates(EvsResult result, int32_t value);
getParameterList()
返回客户端可以读取和写入(如果客户端是主客户端)的参数列表(CameraParam
枚举),并且 getIntParameterRange()
中继有效值范围和分辨率。当主客户端更改相机参数时,同一相机硬件上的所有其他客户端都会收到 PARAMETER_CHANGED
事件通知,其中包含参数 ID 和新值。
注意:传感器驱动程序可能会以不同的方式处理无效的参数值。它可能只是返回错误代码或将值裁剪到有效范围内并应用。因此,setIntParameter()
方法会返回有效值,客户端可以使用此值来确认请求的处理方式。
在多个相机客户端之间请求仲裁
由于之前的 EVS 设计允许多个应用同时订阅单个相机硬件,因此一个应用可能通过更改相机参数来干扰其他应用的操作。此外,多个客户端可能想要以不同的方式调整同一参数,从而导致正在运行的相机服务出现意外行为。
为避免此类问题,EVS 管理器仅允许主客户端对相机参数进行编程。在尝试调整任何相机参数之前,客户端必须通过调用 setMaster()
方法成为主客户端。如果此操作失败,则表示该相机硬件上已存在活动的主客户端。在当前主客户端终止或通过 unsetMaster()
显式放弃主角色之前,不允许其他客户端更改相机参数。当主客户端返回其权限时,所有其他应用都会收到 MASTER_RELEASED
事件通知。
具有高优先级的客户端
EVS 管理器处理拥有显示屏的客户端,该客户端具有高优先级,并允许它从当前主客户端处窃取主角色。由于 EVS 显示屏所有权基于最近性,因此新客户端甚至可以从当前拥有显示屏的客户端处接管。
高优先级客户端必须调用 IEvsCamera::forceMaster(sp<IEvsDisplay>& display)
才能获得主角色。EVS 管理器会检查给定显示屏句柄的状态,并且如果(且仅当)其状态有效且既不是 DisplayState::NOT_OPEN
也不是 DisplayState::DEAD
,则会替换主客户端。刚刚失去主客户端角色的客户端会收到 MASTER_RELEASED
事件通知,并且必须正确处理此事件。