Open CV: How to read message.
// HellowWorldAPP.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <opencv2/opencv.hpp> using namespace cv; int main(int argc, char** argv) { // Read the image file Mat image = imread("MyPic.JPG"); imshow("test", image); waitKey(0); return 0; }