Questions tagged [python-dragonfly]

Dragonfly is a speech recognition framework for Python.

Dragonfly is a speech recognition framework for Python. It works with existing speech recognition software (Windows Speech Recognition or Dragon NaturallySpeaking Natlink) to enable users to easily write scripts that leverage these existing tools. Dragonfly requires Python 2.5 or later.

27 questions
1
vote
2 answers

Disable Windows Speech Recognition using Dragonfly

Is it possible to disable certain aspects of Windows Speech Recognition (WSR) when I only wish to accept specific Dragonfly commands? I am programming a (simple) voice-controlled interaction system in Python using built-in WSR and Dragonfly. WSR…
Luigi
  • 4,129
  • 6
  • 37
  • 57
1
vote
1 answer

DragonFly - no external application?

Context I'm working with DragonFly, the python module. At this point, I just want speech recognized and outputted back to me. Question I'm wondering if there is a way to use DragonFly purely for voice recognition without going through Windows Speech…
0
votes
0 answers

Is there any option to calculate mean curvature and specific surface area in Dragonfly software

For an image data how can I calculate the mean curvature(mm2) and specific surface area(mm) values after the image segmentation using Otsu thresholding in Dragonfly software. After image segmentation I was able to calculate Euler characteristics,…
0
votes
1 answer

Reloading Grammars when using DragonFly + WSR

I've recently started dabbling in DragonFly (due to mild RSI issues), and I'm using it with WSR and the wsr_module_loader_plus.py script. One thing that I'm finding really annoying is that, whenever I tweak a grammar, I need to restart the main…
0
votes
1 answer

How do I debug loading dragonfly grammars in NatLink?

I've been trying to get dragonfly to work on my Windows 10 machine, but I can only get as far as making NatLink activate. I've configured the user directory in the NatLink GUI, as well as activated the two debugging options. In my user directory, I…
Brandon
  • 7,736
  • 9
  • 47
  • 72
0
votes
2 answers

accentuated letters for natlink and dragonfly

I have a natlink setup, with dragonfly and aena on Dragon 13. It's working all well in English, and it's almost working for French. I have a problem when a try to use accentuated letters in the grammar. I get this error (natlink uniform6): Traceback…
0
votes
1 answer

dragonfly : how do i set my language?

I'm using dragon natural speaking with natlink, dragonfly and aena. It works great in english, but if I load a user profile for another language, I get a weird error. This error : Dragonfly IntegerRef getting a TypeError: 'NoneType' object is not…
0
votes
1 answer

dragonfly+dragon naturally speaking not working

I've got Dragon Naturally Speaking 14, dragonfly, the latest natlink (4.1 or something), pywin32, python 2.7, and wxpython installed I've got a python file with this in it in my "user configuration directory" set up by natlink I get the natlink…
Gallaxhar
  • 976
  • 1
  • 15
  • 28
0
votes
0 answers

"Unknown char" error when trying to import dragonfly in Python

I'm using Anaconda 64-bit on Windows 7 x64. I've succesfully installed dragonfly with "pip install dragonfly". But when I'm trying to import dragonfly in IPython I get exception: In [1]: import…
kostr22
  • 576
  • 7
  • 27
0
votes
1 answer

Unable to run enable.py when trying to install dragonfly

I am trying to install dragonfly, i got natlink installed, without problems. But when i try to run enable.py i keep getting this error: C:\NatLink>python enable.py Traceback (most recent call last): File "enable.py", line 400, in…
zilleplus
  • 479
  • 1
  • 3
  • 12
0
votes
1 answer

python dragonfly to recognize similar words

I am doing a program with dragon fly using wsr,where it has to analyse a word,any voice matching that word should output 'yes it matches' If i say 'czechoslovakia' then it must print true even for all the similar matches of this world ,like words…
sar kite
  • 92
  • 1
  • 11
0
votes
0 answers

Python speech recognition 'module' object has no attribute 'VARIANT'

I'm trying to get started using speech recognition in python. First I tried PySpeech (https://code.google.com/p/pyspeech/) using this code: def listen(): while 1: said = speech.input() print said if said == "off": …
1
2