c++ 二进制流图片展示
时间: 2023-07-05 17:27:53 浏览: 254
图片二进制流
4星 · 用户满意度95%
在C++中,可以使用OpenCV库来读取二进制流图片并进行展示。以下是一个简单的示例代码:
```c++
#include <opencv2/opencv.hpp>
#include <iostream>
int main() {
// 读取二进制流图片
std::ifstream file("image.jpg", std::ios::binary);
std::vector<char> buffer(std::istreambuf_iterator<char>(file), {});
// 将二进制流转换为OpenCV的Mat对象
cv::Mat img = cv::imdecode(buffer, cv::IMREAD_COLOR);
// 展示图片
cv::imshow("image", img);
cv::waitKey(0);
return 0;
}
```
在上面的示例代码中,我们首先使用`std::ifstream`读取二进制流图片,并将其保存到`std::vector<char>`类型的缓冲区中。然后,使用`cv::imdecode`函数将缓冲区中的二进制流转换为OpenCV的`Mat`对象。最后,使用`cv::imshow`函数展示图片,并使用`cv::waitKey`函数等待用户按下任意键后关闭窗口。
阅读全文