/usr/include/pocketsphinx/ps_search.h is in libpocketsphinx-dev 0.8.0+real5prealpha-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | /* -*- c-basic-offset:4; indent-tabs-mode: nil -*- */
/* ====================================================================
* Copyright (c) 2014 Alpha Cephei Inc.. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
*
* THIS SOFTWARE IS PROVIDED BY ALPHA CEPHEI INC. ``AS IS'' AND
* ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY
* NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* ====================================================================
*
*/
/**
* @file ps_search.h User can configure several "search" objects with
* different grammars and langauge models and switch them in runtime to
* provide interactive experience for the user.
*
* There are different possible search modes:
*
* <ul>
* <li>keyword - efficiently looks for keyphrase and ignores other speech. allows to configure detection threshold.</li>
* <li>grammar - recognizes speech according to JSGF grammar. Unlike keyphrase grammar search doesn't ignore words which are not in grammar but tries to recognize them.</li>
* <li>ngram/lm - recognizes natural speech with a language model.</li>
* <li>allphone - recognizes phonemes with a phonetic language model.</li>
* </ul>
*
* Each search has a name and can be referenced by a name, names are
* application-specific. The function ps_set_search allows to activate
* the search previously added by a name. Only single search can be
* activated at time.
*
* To add the search one needs to point to the grammar/language model
* describing the search. The location of the grammar is specific to the
* application.
*
* The exact design of a searches depends on your application. For
* example, you might want to listen for activation keyword first and once
* keyword is recognized switch to ngram search to recognize actual
* command. Once you recognized the command you can switch to grammar
* search to recognize the confirmation and then switch back to keyword listening
* mode to wait for another command.
*
* If only a simple recognition is required it is sufficient to add a single search or
* just configure the required mode with configuration options.
*/
#ifndef __PS_SEARCH_H__
#define __PS_SEARCH_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <sphinxbase/fsg_model.h>
#include <sphinxbase/ngram_model.h>
/**
* PocketSphinx search iterator.
*/
typedef struct ps_search_iter_s ps_search_iter_t;
/**
* Actives search with the provided name.
*
* Activates search with the provided name. The search must be added before
* using either ps_set_fsg(), ps_set_lm() or ps_set_kws().
*
* @return 0 on success, -1 on failure
*/
POCKETSPHINX_EXPORT
int ps_set_search(ps_decoder_t *ps, const char *name);
/**
* Returns name of curent search in decoder
*
* @see ps_set_search
*/
POCKETSPHINX_EXPORT
const char* ps_get_search(ps_decoder_t *ps);
/**
* Unsets the search and releases related resources.
*
* Unsets the search previously added with
* using either ps_set_fsg(), ps_set_lm() or ps_set_kws().
*
* @see ps_set_fsg
* @see ps_set_lm
* @see ps_set_kws
*/
POCKETSPHINX_EXPORT
int ps_unset_search(ps_decoder_t *ps, const char *name);
/**
* Returns iterator over current searches
*
* @see ps_set_search
*/
POCKETSPHINX_EXPORT
ps_search_iter_t *ps_search_iter(ps_decoder_t *ps);
/**
* Updates search iterator to point to the next position.
*
* This function automatically frees the iterator object upon reaching
* the final entry.
* @see ps_set_search
*/
POCKETSPHINX_EXPORT
ps_search_iter_t *ps_search_iter_next(ps_search_iter_t *itor);
/**
* Retrieves the name of the search the iterator points to.
*
* @see ps_set_search
*/
POCKETSPHINX_EXPORT
const char* ps_search_iter_val(ps_search_iter_t *itor);
/**
* Delete an unfinished search iterator
*
* @see ps_set_search
*/
POCKETSPHINX_EXPORT
void ps_search_iter_free(ps_search_iter_t *itor);
/**
* Updates search iterator to point to the next position.
*
* This function automatically frees the iterator object upon reaching
* the final entry.
* @see ps_set_search
*/
POCKETSPHINX_EXPORT
const char* ps_search_iter_val(ps_search_iter_t *itor);
/**
* Get the language model set object for this decoder.
*
* If N-Gram decoding is not enabled, this will return NULL. You will
* need to enable it using ps_set_lmset().
*
* @return The language model set object for this decoder. The
* decoder retains ownership of this pointer, so you should
* not attempt to free it manually. Use ngram_model_retain()
* if you wish to reuse it elsewhere.
*/
POCKETSPHINX_EXPORT
ngram_model_t *ps_get_lm(ps_decoder_t *ps, const char *name);
/**
* Adds new search based on N-gram language model.
*
* Associates N-gram search with the provided name. The search can be activated
* using ps_set_search().
*
* @see ps_set_search.
*/
POCKETSPHINX_EXPORT
int ps_set_lm(ps_decoder_t *ps, const char *name, ngram_model_t *lm);
/**
* Adds new search based on N-gram language model.
*
* Convenient method to load N-gram model and create a search.
*
* @see ps_set_lm
*/
POCKETSPHINX_EXPORT
int ps_set_lm_file(ps_decoder_t *ps, const char *name, const char *path);
/**
* Get the finite-state grammar set object for this decoder.
*
* If FSG decoding is not enabled, this returns NULL. Call
* ps_set_fsgset() to enable it.
*
* @return The current FSG set object for this decoder, or
* NULL if none is available.
*/
POCKETSPHINX_EXPORT
fsg_model_t *ps_get_fsg(ps_decoder_t *ps, const char *name);
/**
* Adds new search based on finite state grammar.
*
* Associates FSG search with the provided name. The search can be activated
* using ps_set_search().
*
* @see ps_set_search
*/
POCKETSPHINX_EXPORT
int ps_set_fsg(ps_decoder_t *ps, const char *name, fsg_model_t *fsg);
/**
* Adds new search using JSGF model.
*
* Convenient method to load JSGF model and create a search.
*
* @see ps_set_fsg
*/
POCKETSPHINX_EXPORT
int ps_set_jsgf_file(ps_decoder_t *ps, const char *name, const char *path);
/**
* Adds new search using JSGF model.
*
* Convenience method to parse JSGF model from string and create a search.
*
* @see ps_set_fsg
*/
POCKETSPHINX_EXPORT
int ps_set_jsgf_string(ps_decoder_t *ps, const char *name, const char *jsgf_string);
/**
* Get the current Key phrase to spot
*
* If KWS is not enabled, this returns NULL. Call
* ps_update_kws() to enable it.
*
* @return The current keyphrase to spot
*/
POCKETSPHINX_EXPORT
const char* ps_get_kws(ps_decoder_t *ps, const char *name);
/**
* Adds keywords from a file to spotting
*
* Associates KWS search with the provided name. The search can be activated
* using ps_set_search().
*
* @see ps_set_search
*/
POCKETSPHINX_EXPORT
int ps_set_kws(ps_decoder_t *ps, const char *name, const char *keyfile);
/**
* Adds new keyword to spot
*
* Associates KWS search with the provided name. The search can be activated
* using ps_set_search().
*
* @see ps_set_search
*/
POCKETSPHINX_EXPORT
int ps_set_keyphrase(ps_decoder_t *ps, const char *name, const char *keyphrase);
/**
* Adds new search based on phone N-gram language model.
*
* Associates N-gram search with the provided name. The search can be activated
* using ps_set_search().
*
* @see ps_set_search.
*/
POCKETSPHINX_EXPORT
int ps_set_allphone(ps_decoder_t *ps, const char *name, ngram_model_t *lm);
/**
* Adds new search based on phone N-gram language model.
*
* Convenient method to load N-gram model and create a search.
*
* @see ps_set_allphone
*/
POCKETSPHINX_EXPORT
int ps_set_allphone_file(ps_decoder_t *ps, const char *name, const char *path);
#ifdef __cplusplus
}
#endif
#endif /* __PS_SEARCH_H__ */
|