ailiaPoseEstimatorGetObjectPose method
- Pointer<
AILIAPoseEstimator> pose_estimator, - Pointer<
AILIAPoseEstimatorObjectPose> obj, - int obj_idx,
- int version
~japanese @brief 骨格検出結果を取得します。 @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 pose estimation. @param pose_estimator An estimator instance pointer @param obj Object information @param obj_idx Object index @param version AILIA_POSE_ESTIMATOR_OBJECT_POSE_VERSION @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.
Implementation
int ailiaPoseEstimatorGetObjectPose(
ffi.Pointer<AILIAPoseEstimator> pose_estimator,
ffi.Pointer<AILIAPoseEstimatorObjectPose> obj,
int obj_idx,
int version,
) {
return _ailiaPoseEstimatorGetObjectPose(
pose_estimator,
obj,
obj_idx,
version,
);
}