opencv 001

#include "iostream"
#include
using namespace std;
using namespace cv;


int main( ) {
    
    Mat img = imread(“01.jpg);
    if (img.empty()) {
        cout << "Error" << endl;
        return -1;
    }
    imshow("Lena", img);
    waitKey();

    return 0;
}

你可能感兴趣的:(openCV)