ailiaPoseEstimatorGetObjectUpPose method

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

~japanese @brief UpPose 認識結果を取得します。 @param pose_estimator 検出オブジェクトポインタ @param obj オブジェクト情報 @param obj_idx オブジェクトインデックス @param version AILIA_POSE_ESTIMATOR_OBJECT_POSE_VERSION @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。

~english @brief Gets the results of the human up pose estimation. @param pose_estimator An estimator instance pointer @param obj Object information @param obj_idx Object index @param version AILIA_POSE_ESTIMATOR_OBJECT_UPPOSE_VERSION @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.

Implementation

int ailiaPoseEstimatorGetObjectUpPose(
  ffi.Pointer<AILIAPoseEstimator> pose_estimator,
  ffi.Pointer<AILIAPoseEstimatorObjectUpPose> obj,
  int obj_idx,
  int version,
) {
  return _ailiaPoseEstimatorGetObjectUpPose(
    pose_estimator,
    obj,
    obj_idx,
    version,
  );
}