ailiaPoseEstimatorCompute method
~japanese @brief 骨格検出・顔特徴点検出を行います。 @param pose_estimator 検出オブジェクトポインタ @param src 画像データ(32bpp) @param src_stride 1ラインのバイト数 @param src_width 画像幅 @param src_height 画像高さ @param src_format 画像形式 (AILIA_IMAGE_FORMAT_*) @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。
~english @brief Performs human pose estimation and human face landmarks extraction. @param pose_estimator An estimator instance pointer @param src Image data (32 bpp) @param src_stride The number of bytes in 1 line @param src_width Image width @param src_height Image height @param src_format Image format (AILIA_IMAGE_FORMAT_*) @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.
Implementation
int ailiaPoseEstimatorCompute(
ffi.Pointer<AILIAPoseEstimator> pose_estimator,
ffi.Pointer<ffi.Void> src,
int src_stride,
int src_width,
int src_height,
int src_format,
) {
return _ailiaPoseEstimatorCompute(
pose_estimator,
src,
src_stride,
src_width,
src_height,
src_format,
);
}