qt6中报错 F:\00-Work\2023_05_26_qml_learn\qml-opencv-camera-master\videoproducer.h:4: error: 'QAbstractVideoSurface' file not found
时间: 2024-03-14 07:48:04 浏览: 127
这个错误可能是由于 Qt6 缺少 QAbstractVideoSurface 类的头文件所导致的。你可以尝试添加以下行:
```C++
#include <QtMultimedia/QAbstractVideoSurface>
```
确保 QtMultimedia 模块已经被正确地添加到你的项目中。如果问题仍然存在,你可以尝试重新安装 Qt6,并确保已经安装了 QtMultimedia 模块。
相关问题
F:\00-Work\2023_05_26_qml_learn\learn3\ShowMatItem.cpp:14: error: no declaration matches 'void ShowMatItem::camera_open()' F:/00-Work/2023_05_26_qml_learn/learn3/ShowMatItem.cpp:14:6: error: no declaration matches 'void ShowMatItem::camera_open()' 14 | void ShowMatItem::camera_open(){ | ^~~~~~~~~~~ F:/00-Work/2023_05_26_qml_learn/learn3/ShowMatItem.cpp:14:6: note: no functions named 'void ShowMatItem::camera_open()'
这个错误提示是由于编译器找不到名为 `camera_open` 的函数的声明,可能是因为你在 `ShowMatItem.cpp` 文件中定义了这个函数,但是在 `ShowMatItem.h` 文件中没有声明。你需要在 `ShowMatItem.h` 文件中添加如下声明:
```cpp
public:
void camera_open();
```
这样编译器就能找到该函数的声明,从而解决该错误。
阅读全文