ailiaPoseEstimatorGetObjectCount method

int ailiaPoseEstimatorGetObjectCount(
  1. Pointer<AILIAPoseEstimator> pose_estimator,
  2. Pointer<Uint32> obj_count
)

~japanese @brief 検出結果の数を取得します。 @param pose_estimator 検出オブジェクトポインタ @param obj_count オブジェクト数 顔特徴点の場合は1または0となります。 @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。

~english @brief Gets the number of detection results. @param pose_estimator An estimator instance pointer @param obj_count The number of objects. Set to 1 or 0 for human face landmarks. @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.

Implementation

int ailiaPoseEstimatorGetObjectCount(
  ffi.Pointer<AILIAPoseEstimator> pose_estimator,
  ffi.Pointer<ffi.Uint32> obj_count,
) {
  return _ailiaPoseEstimatorGetObjectCount(
    pose_estimator,
    obj_count,
  );
}