現在この提出コンテンツをフォロー中です。
- フォローしているコンテンツ フィードに更新が表示されます。
- コミュニケーション基本設定に応じて電子メールを受け取ることができます
Speech recognition, also known as automatic speech recognition (ASR) or voice recognition, is technology that interprets spoken language and converts it into text. This technology enables devices like smartphones, virtual assistants, and other applications to understand and respond to spoken commands or queries. It relies on algorithms and machine learning models to analyze audio signals, identify patterns, and transcribe speech accurately. Speech recognition has wide-ranging applications, including dictation, voice-controlled interfaces, transcription services, and accessibility features for individuals with disabilities. Its development has led to significant advancements in communication, accessibility, and automation across various industries.% Speech Recognition using MATLAB
% Record audio
recObj = audiorecorder;
disp('Start speaking.');
recordblocking(recObj, 5);
disp('End of Recording.');
% Play back the recording.
play(recObj);
% Store data in double-precision array.
audioData = getaudiodata(recObj);
% Perform speech recognition
speech = speechToText(audioData);
% Display recognized speech
disp('Recognized speech:');
disp(speech);
引用
Ragul (2026). speech recognition (https://jp.mathworks.com/matlabcentral/fileexchange/164781-speech-recognition), MATLAB Central File Exchange. に取得済み.
謝辞
ヒントを得たファイル: Speech Recognition, Speech Recognition
| バージョン | 公開済み | リリース ノート | Action |
|---|---|---|---|
| 1.0.0 |
