ailiaPoseEstimatorGetObjectFace method

int ailiaPoseEstimatorGetObjectFace(
  1. Pointer<AILIAPoseEstimator> pose_estimator,
  2. Pointer<AILIAPoseEstimatorObjectFace> obj,
  3. int obj_idx,
  4. int version
)

~japanese @brief 顔特徴点検出結果を取得します。 @param pose_estimator 検出オブジェクトポインタ @param obj オブジェクト情報 @param obj_idx オブジェクトインデックス 必ず 0 を指定してください。 @param version AILIA_POSE_ESTIMATOR_OBJECT_FACE_VERSION @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。

~english @brief Gets the results of the human face landmarks extraction. @param pose_estimator An estimator instance pointer @param obj Object information @param obj_idx Object index. Ensure that 0 is specified. @param version AILIA_POSE_ESTIMATOR_OBJECT_FACE_VERSION @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.

Implementation

int ailiaPoseEstimatorGetObjectFace(
  ffi.Pointer<AILIAPoseEstimator> pose_estimator,
  ffi.Pointer<AILIAPoseEstimatorObjectFace> obj,
  int obj_idx,
  int version,
) {
  return _ailiaPoseEstimatorGetObjectFace(
    pose_estimator,
    obj,
    obj_idx,
    version,
  );
}