【问题标题】:Cannot start program. Pocketsphinx.dll is missing error无法启动程序。 Pocketsphinx.dll 丢失错误
【发布时间】:2016-06-23 11:52:06
【问题描述】:

我已经设置了要在 Visual Studio 中使用的其他库目录和 lib 文件夹。也构建成功,但每当我尝试从 Visual Studio 执行程序时,它都会返回以下错误:

程序无法启动,因为您的计算机中缺少 pocketsphinx.dll。尝试重新安装程序以解决问题。

当我检查目录时,我看到pocketsphinx.dll 在那里。

我的代码是(取自pocketsphinxwikia):

#include <pocketsphinx.h>

#define MODELDIR "C:\Sphinx\pocketsphinx\model" 
int
main(int argc, char *argv[])
{
ps_decoder_t *ps;
cmd_ln_t *config;
FILE *fh;
char const *hyp, *uttid;
int16 buf[512];
int rv;
int32 score;

config = cmd_ln_init(NULL, ps_args(), TRUE,
             "-hmm", MODELDIR "/en-us/en-us",
             "-lm", MODELDIR "/en-us/en-us.lm.bin",
             "-dict", MODELDIR "/en-us/cmudict-en-us.dict",
             NULL);
if (config == NULL) {
    fprintf(stderr, "Failed to create config object, see log for details\n");
    return -1;
}

ps = ps_init(config);
if (ps == NULL) {
    fprintf(stderr, "Failed to create recognizer, see log for details\n");
    return -1;
}

fh = fopen("goforward.raw", "rb");
if (fh == NULL) {
    fprintf(stderr, "Unable to open input file goforward.raw\n");
    return -1;
}

rv = ps_start_utt(ps);

while (!feof(fh)) {
    size_t nsamp;
    nsamp = fread(buf, 2, 512, fh);
    rv = ps_process_raw(ps, buf, nsamp, FALSE, FALSE);
}

rv = ps_end_utt(ps);
hyp = ps_get_hyp(ps, &score);
printf("Recognized: %s\n", hyp);

fclose(fh);
ps_free(ps);
cmd_ln_free_r(config);

return 0;
}

编辑: pocketsphinx.dllpocketsphinx.lib 一样位于 bin\Debug\x64 文件夹中。

【问题讨论】:

  • “我看到 pocketsphinx.dll 在那里。”那里在哪里?
  • 我假设您的项目的可执行文件(您正在 x64 调试配置中构建)不在 bin\Debug\x64 中。

标签: c++ visual-studio cmusphinx pocketsphinx


【解决方案1】:

当您在 Visual Studio 的调试器中运行程序时,您的工作目录参数(项目设置->配置属性->调试)默认为 $(ProjectDir)。将其更改为$(TargetDir),它应该会启动。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2014-04-10
    • 2020-09-26
    • 2013-02-01
    • 2012-07-31
    • 1970-01-01
    • 2013-01-29
    • 2013-03-15
    • 2016-06-07
    相关资源
    最近更新 更多