ailiaSpeechGetTextCount method

int ailiaSpeechGetTextCount(
  1. Pointer<AILIASpeech> net,
  2. Pointer<UnsignedInt> count
)

~japanese @brief 認識したテキストの数を取得します。 @param net ネットワークオブジェクトポインタ @param count テキストの数 @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。

~english @brief Get recognized text count @param net A network instance pointer @param count Text count @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise.

Implementation

int ailiaSpeechGetTextCount(
  ffi.Pointer<AILIASpeech> net,
  ffi.Pointer<ffi.UnsignedInt> count,
) {
  return _ailiaSpeechGetTextCount(
    net,
    count,
  );
}