下面是一个简单的 OpenCV C++ 程序,用于显示图像:
#include <opencv2/opencv.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main(int argc, char** argv) {
// 读取图像
Mat image = imread("image.jpg", IMREAD_COLOR);
// 检查图像是否加载成功
if(!image.data) {
cout << "Could not open