#include using namespace cv; int main() { Mat img = imread("lena.png"); imshow("lena", img); waitKey(0); destroyAllWindows(); return 0; }