ailiaDetectorGetObjectCount method

int ailiaDetectorGetObjectCount(
  1. Pointer<AILIADetector> detector,
  2. Pointer<Uint32> obj_count
)

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

~english @brief Gets the number of detection results. @param detector A detector instance pointer @param obj_count The number of objects @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.

Implementation

int ailiaDetectorGetObjectCount(
  ffi.Pointer<AILIADetector> detector,
  ffi.Pointer<ffi.Uint32> obj_count,
) {
  return _ailiaDetectorGetObjectCount(
    detector,
    obj_count,
  );
}