error: invalid conversion from ‘unsigned char*’ to ‘int’
时间: 2024-05-29 11:09:48 浏览: 157
This error message indicates that there is an attempt to convert an unsigned char pointer to an integer, which is not allowed in C++.
To resolve this error, you can either change the type of the variable from an unsigned char pointer to an integer, or use a cast to explicitly convert the pointer to an integer.
For example, if you have a variable declared as:
unsigned char* ptr;
You can change it to an integer:
int ptr;
Or you can use a cast to convert the pointer to an integer:
int ptr = (int)ptr;
相关问题
/home/topeet/Qt_Project/homework1/widget.cpp:81: error: invalid conversion from 'std::basic_string<char>::size_type {aka unsigned int}' to 'const char*' [-fpermissive] std::string image = ((const unsigned char*)buffer.str().data(), buffer.str().size()); ^
这个错误提示说明在你的代码中,你将一个 `std::string` 类型的变量 `image` 赋值给了一个表达式 `((const unsigned char*)buffer.str().data(), buffer.str().size())`,但是这个表达式的类型是 `unsigned int`,与 `std::string` 类型不匹配,导致编译器报错。
可能是你想要将 `buffer.str()` 转换成 `unsigned char*` 类型,然后存储到 `std::string` 类型的变量 `image` 中。你可以将 `((const unsigned char*)buffer.str().data(), buffer.str().size())` 修改为 `std::string((const char*)buffer.str().data(), buffer.str().size())`,这样就可以将 `buffer.str()` 转换成 `std::string` 类型,然后存储到 `image` 变量中。
修改后的代码如下:
```cpp
std::string image((const char*)buffer.str().data(), buffer.str().size());
```
这样就可以避免这个错误了。
pullflowmonitor.cpp: In member function 'void PullFlowMonitor::handleYolov8Model(void*, ImagePair*)': pullflowmonitor.cpp:2334:143: error: invalid conversion from 'uint8_t* {aka unsigned char*}' to 'uint32_t {aka unsigned int}' [-fpermissive] ame,rgbFrameSize,rgbThumbnail,imagePair->frame.width,imagePair->frame.height)) ^ pullflowmonitor.cpp:2334:143: error: too many arguments to function 'int32_t generate_picture(const char*, PictureFormat, PixelFormat, const uint8_t*, uint32_t, uint32_t, uint32_t)'
这个错误信息是编译器给出的,在 PullFlowMonitor 类的成员函数 handleYolov8Model 中,第2334行出现了错误,函数 generate_picture 的参数类型不匹配。具体来说,将一个指向 uint8_t 类型的指针转换成了 uint32_t 类型,这是无效的。在函数 generate_picture 的调用中,传递的参数过多,导致了这个错误。建议检查一下函数的定义和调用是否一致,尤其是参数类型和数量是否匹配。
阅读全文