以前の Extended View System(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. Once it becomes a master, it will be able to * 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()
は、有効な値の範囲と解像度をリレーします。マスター クライアントがカメラ パラメータを変更すると、同じカメラ ハードウェア上の他のすべてのクライアントが、パラメータ ID と新しい値を持つ PARAMETER_CHANGED
イベントを取得して、通知されます。
注: センサー ドライバは、無効なパラメータ値を異なる方法で処理することがあります。単にエラーコードを返すか、有効な範囲内の値をクリップして適用します。したがって、setIntParameter()
メソッドが有効な値を返し、クライアントはこの値を使用してリクエストがどのように処理されたかを確認できます。
複数のカメラ クライアント間での調整のリクエスト
以前の EVS 設計では、複数のアプリが 1 つのカメラ ハードウェアに同時に登録できたため、あるアプリがカメラ パラメータを変更することで、他のアプリの操作を妨げる可能性がありました。また、複数のクライアントで同じパラメータを異なる方法で調整すると、カメラサービスの実行時に予期しない動作が発生することもありました。
この問題を回避するため、EVS マネージャーでは、マスター クライアントのみがカメラ パラメータをプログラミングできます。カメラ パラメータを調整する前に、クライアントは setMaster()
メソッドを呼び出してマスター クライアントになる必要があります。これに失敗した場合、そのカメラ ハードウェアにアクティブなマスター クライアントがすでに存在することを意味します。現在のマスター クライアントが停止するまで、または unsetMaster()
を介してマスターロールが明示的に放棄されるまで、他のクライアントはカメラ パラメータを変更できません。マスター クライアントが権限を返すと、MASTER_RELEASED
イベントによって他のすべてのアプリに通知されます。
優先度の高いクライアント
EVS マネージャーは、ディスプレイを所有しているクライアントを高優先度で処理し、現在のマスターからマスターロールを取得できるようにします。EVS のディスプレイ所有権は新しい順に割り当てられるため、新しいクライアントは現在のクライアントからディスプレイを引き継ぐこともできます。
優先度の高いクライアントがマスターロールを取得するには、IEvsCamera::forceMaster(sp<IEvsDisplay>& display)
を呼び出す必要があります。EVS マネージャーは特定のディスプレイ ハンドルの状態を調べ、その状態が有効であって、DisplayState::NOT_OPEN
でも DisplayState::DEAD
でもない場合に限り、マスターを置き換えます。マスターロールを失ったクライアントは、MASTER_RELEASED
イベントによって通知され、適切な対処が必要になります。