ailiaSpeechPostProcess method

int ailiaSpeechPostProcess(
  1. Pointer<AILIASpeech> net
)

~japanese @brief 後処理を行います。 @param net ネットワークオブジェクトポインタ @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。 @details 認識した結果はailiaSpeechGetText APIで取得します。

~english @brief Execute post process @param net A network instance pointer @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise. @details Get the recognition result with ailiaSpeechGetText API.

Implementation

int ailiaSpeechPostProcess(
  ffi.Pointer<AILIASpeech> net,
) {
  return _ailiaSpeechPostProcess(
    net,
  );
}