ailiaClassifierCompute method
~japanese @brief 物体識別を行います。 @param classifier 識別オブジェクトポインタ @param src 画像データ(32bpp) @param src_stride 1ラインのバイト数 @param src_width 画像幅 @param src_height 画像高さ @param src_format 画像のフォーマット (AILIA_IMAGE_FORMAT_*) @param max_class_count 識別結果の数の最大 @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。
~english @brief Performs object classification. @param classifier A classifier 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_*) @param max_class_count The maximum number of classification results @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.
Implementation
int ailiaClassifierCompute(
ffi.Pointer<AILIAClassifier> classifier,
ffi.Pointer<ffi.Void> src,
int src_stride,
int src_width,
int src_height,
int src_format,
int max_class_count,
) {
return _ailiaClassifierCompute(
classifier,
src,
src_stride,
src_width,
src_height,
src_format,
max_class_count,
);
}