我正在开发一个用于识别图像中的车牌的应用程序。它工作正常,但现在我想将代码的图像分析部分移至单独的线程。我正在使用Qt 5.4。阅读文档后,我认为QtConcurrent::map
是正确的选择,因为在处理图像之前,用户会加载存储在列表中的文件(仅文件名)。这是一些代码:
应该在线程中运行的函数的定义:
results detectPlates(const QString &file);
尝试使用多线程:
QFuture<results> r = QtConcurrent::map(files, &MainWindow::detectPlates)
files
定义为QList<QString>
results
是我正在使用的库中定义的类型,如果那很重要的话。这不会与错误一起编译:
C2440 'initializing' cannot convert from `QFuture<void>` to `QFuture<results>`
当我将函数修改为
<void>
时,我得到:error c2064: term does not evaluate to a function taking 1 argument.
问题是什么?我将不胜感激任何帮助。
最佳答案
QtConcurrent::map
修改项目,并返回无效的未来。如果要以QFuture<T>
的形式返回结果,则需要使用QtConcurrent::mapped
。