我正在制作用于识别图像中的牌照的应用程序。它工作正常,但现在我想将代码的图像分析部分移动到一个单独的线程。我正在使用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.
有什么问题?我将不胜感激任何帮助。
答案 0 :(得分:2)
QtConcurrent::map
修改了相应的项目,并返回无效的未来。如果您想以QFuture<T>
的形式返回结果,则需要使用QtConcurrent::mapped
。