ailiaSpeechTranscribe method
- Pointer<
AILIASpeech> net
~japanese @brief 音声認識を行います。 @param net ネットワークオブジェクトポインタ @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。 @details 認識した結果はailiaSpeechGetText APIで取得します。
~english @brief Speech recognition @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 ailiaSpeechTranscribe(
ffi.Pointer<AILIASpeech> net,
) {
return _ailiaSpeechTranscribe(
net,
);
}