Is there a command in Matlab which reads a message and makes it an audio one ?

조회 수: 1 (최근 30일)
I am working on an interface in which I need to detect a tumor in different images and calculate its area,I need to display a message "the area of cancer is(value) from the total area" and I want it to be read and listened, is that possible ?
  댓글 수: 2
Jan
Jan 2014년 5월 25일
What is the problem exactly? Do the details about the GUI and its purpose matter?
Mayssa
Mayssa 2014년 5월 26일
no it doesn't really matter, I am looking for a command able to read (with voice) any written message

댓글을 달려면 로그인하십시오.

채택된 답변

Jan
Jan 2014년 5월 25일
Under Windows there are several methods to convert text to a speech output to the speakers:
NET.addAssembly('System.Speech')
speaker = System.Speech.Synthesis.SpeechSynthesizer();
speaker.Rate = 1
speaker.Speak('Hello world')
In the FEX you'd find these methods by a simple search:

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by