ailiaPoseEstimatorSetThreshold method

int ailiaPoseEstimatorSetThreshold(
  1. Pointer<AILIAPoseEstimator> pose_estimator,
  2. double threshold
)

~japanese @brief 検出閾値を設定します。 @param pose_estimator 検出オブジェクトポインタ @param threshold 検出閾値 0.0以上1.0以下の値で、値が小さいほど検出しやすくなります。 @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。

~english @brief Set the detection threshold. @param pose_estimator An estimator instance pointer @param threshold The detection threshold (for example, 0.1f) (The smaller it is, the easier the detection will be and the more detected objects found.) @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.

Implementation

int ailiaPoseEstimatorSetThreshold(
  ffi.Pointer<AILIAPoseEstimator> pose_estimator,
  double threshold,
) {
  return _ailiaPoseEstimatorSetThreshold(
    pose_estimator,
    threshold,
  );
}